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

21 lines
207 B
C#
Raw Normal View History

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