com.alicizax.unity/Runtime/Variable/Vec2.cs

26 lines
423 B
C#
Raw Normal View History

2025-02-07 16:04:12 +08:00
/*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;
}
}
}*/