aboutsummaryrefslogtreecommitdiff
path: root/V3/Screens/IDrawable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Screens/IDrawable.cs')
-rw-r--r--V3/Screens/IDrawable.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/V3/Screens/IDrawable.cs b/V3/Screens/IDrawable.cs
new file mode 100644
index 0000000..b940d94
--- /dev/null
+++ b/V3/Screens/IDrawable.cs
@@ -0,0 +1,19 @@
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Graphics;
+
+namespace V3.Screens
+{
+ /// <summary>
+ /// An object that can be drawn using a sprite batch.
+ /// </summary>
+ public interface IDrawable
+ {
+ /// <summary>
+ /// Draws this object using the given sprite batch.
+ /// </summary>
+ /// <param name="gameTime">a snapshot of the game time</param>
+ /// <param name="spriteBatch">the sprite batch to use for drawing
+ /// this object</param>
+ void Draw(GameTime gameTime, SpriteBatch spriteBatch);
+ }
+}