AlicizaX/Client/Packages/com.alicizax.unity/Runtime/Variable/Vec2.cs
陈思海 eb38f67131 init
2025-01-23 19:06:48 +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;
}
}
}*/