Files
2026-02-21 16:45:37 +08:00

16 lines
158 B
C#

namespace Mtree
{
public struct Vector2Int
{
public int x;
public int y;
public Vector2Int(int x, int y)
{
this.x = x;
this.y = y;
}
}
}