DotN64/DotN64.Desktop/Point.cs

18 lines
279 B
C#

namespace DotN64.Desktop
{
internal struct Point
{
#region Fields
public int X, Y;
#endregion
#region Constructors
public Point(int x, int y)
{
X = x;
Y = y;
}
#endregion
}
}