7d3c8a9f39
+ * - AdjustUnits + * - RelativeToCamera + * - Cleaning and sorting using statements
28 lines
480 B
C#
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;
|
|
}
|
|
}
|
|
}
|