1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
using System; namespace XMainClient { internal struct Coordinate { public static Coordinate Invalid = new Coordinate(-100, -100); public int x; public int y; public Coordinate(int _x, int _y) { this.x = _x; this.y = _y; } } }