summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Coordinate.cs
blob: ab55118e5f59694ea25aaa4596bf948ed8eb096c (plain)
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;
		}
	}
}