axiosengine/axios/Engine/Structures/AxiosPoint.cs
nathan@daedalus 7d3c8a9f39 + * - Adding properties in DrawableAxiosGameObject to turn on/off the following:
+ *   - AdjustUnits
+ *   - RelativeToCamera
+ * - Cleaning and sorting using statements
2012-03-24 18:06:51 -05:00

28 lines
480 B
C#

namespace Axios.Engine.Structures
{
public class AxiosPoint
{
private float _x;
private float _y;
public float X
{
get { return _x; }
set { _x = value; }
}
public float Y
{
get { return _y; }
set { _y = value; }
}
public AxiosPoint(float X, float Y)
{
_x = X;
_y = Y;
}
}
}