axiosengine/axios/Engine/UI/AxiosUIObject.cs

21 lines
365 B
C#
Raw Normal View History

2012-03-19 23:57:59 +00:00
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 {}
}
}
}