7d3c8a9f39
+ * - AdjustUnits + * - RelativeToCamera + * - Cleaning and sorting using statements
21 lines
365 B
C#
21 lines
365 B
C#
|
|
|
|
namespace Axios.Engine.UI
|
|
{
|
|
public class AxiosUIObject : DrawableAxiosGameObject
|
|
{
|
|
public int Width
|
|
{
|
|
get { return this.Texture.Width; }
|
|
private set { }
|
|
}
|
|
|
|
public int Height
|
|
{
|
|
get { return this.Texture.Height; }
|
|
private set {}
|
|
}
|
|
|
|
}
|
|
}
|