26 lines
423 B
C#
26 lines
423 B
C#
![]() |
/*namespace UnityGameFramework.Runtime
|
||
|
{
|
||
|
public class Vec2Int
|
||
|
{
|
||
|
public int w;
|
||
|
public int h;
|
||
|
|
||
|
public Vec2Int(int width, int height)
|
||
|
{
|
||
|
w = width;
|
||
|
h = height;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public class Vec2
|
||
|
{
|
||
|
public float x;
|
||
|
public float y;
|
||
|
|
||
|
public Vec2(float px, float py)
|
||
|
{
|
||
|
x = px;
|
||
|
y = py;
|
||
|
}
|
||
|
}
|
||
|
}*/
|