TableturfBattleApp/TableturfBattleServer/Point.cs
2023-10-10 09:31:50 +11:00

11 lines
162 B
C#

namespace TableturfBattleServer;
public struct Point {
public int X;
public int Y;
public Point(int x, int y) {
this.X = x;
this.Y = y;
}
}