mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
263 B
C#
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; }
|
|
}
|
|
}
|