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