Root/
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Xna.Framework; namespace Axios.Engine.Interfaces { interface IDrawableAxiosGameObject { int DrawOrder { get ; set ; } void Draw(AxiosGameScreen gameScreen, GameTime gameTime); } } |
Source at commit 89349dfb8461 created 12 years 9 months ago. By nathan@daedalus, Adding support for a rectangle class that uses floats instead of ints |
---|