Cosmos/source/Cosmos.System2/Graphics/Point.cs
2018-05-20 15:35:04 +02:00

16 lines
263 B
C#

//#define COSMOSDEBUG
namespace Cosmos.System.Graphics
{
public struct Point
{
public Point(int x, int y)
{
X = x;
Y = y;
}
public int X { get; set; }
public int Y { get; set; }
}
}