This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gwen-dotnet/Gwen/Point.cs

20 lines
191 B
C#

using System;
namespace Gwen
{
public struct Point
{
public int X;
public int Y;
public static readonly Point Empty;
public Point(int x, int y)
{
X = x;
Y = y;
}
}
}