com.alicizax.unity/Runtime/Variable/Vec2.cs
陈思海 bf0d8340af init
2025-02-07 16:04:12 +08:00

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;
}
}
}*/