axiosengine/axios/Engine/Interfaces/IDrawableAxiosGameObject.cs

15 lines
280 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
2012-03-19 23:57:59 +00:00
namespace Axios.Engine.Interfaces
{
interface IDrawableAxiosGameObject
{
int DrawOrder
{
get;
set;
}
void Draw(AxiosGameScreen gameScreen, GameTime gameTime);
}
}