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
Gered aceff7ba6c add very basic copies of System.Drawing classes to Gwen namespace
minimal implementation only, just enough to satisfy Gwen's usage of the original System.Drawing classes
2013-03-29 19:00:48 -04:00

21 lines
207 B
C#

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;
}
}
}