26 lines
423 B
Smalltalk
26 lines
423 B
Smalltalk
/*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;
|
|
}
|
|
}
|
|
}*/ |