axiosengine/axios/Engine/Interfaces/IDrawableAxiosGameObject.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

15 lines
280 B
C#

using Microsoft.Xna.Framework;
namespace Axios.Engine.Interfaces
{
interface IDrawableAxiosGameObject
{
int DrawOrder
{
get;
set;
}
void Draw(AxiosGameScreen gameScreen, GameTime gameTime);
}
}