16 lines
158 B
C#
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;
|
|
}
|
|
}
|
|
}
|