mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-03-21 17:34:28 -05:00
6 lines
117 B
C#
6 lines
117 B
C#
namespace TableturfBattleServer;
|
|
public struct Point(int x, int y) {
|
|
public int X = x;
|
|
public int Y = y;
|
|
}
|