mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-03-23 10:24:10 -05:00
15 lines
232 B
C#
15 lines
232 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TableturfBattleServer;
|
|
public struct Point {
|
|
[JsonProperty("x")]
|
|
public int X;
|
|
[JsonProperty("y")]
|
|
public int Y;
|
|
|
|
public Point(int x, int y) {
|
|
this.X = x;
|
|
this.Y = y;
|
|
}
|
|
}
|