20 lines
191 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|