aboutsummaryrefslogtreecommitdiff
path: root/V3/Screens/IUpdatable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Screens/IUpdatable.cs')
-rw-r--r--V3/Screens/IUpdatable.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/V3/Screens/IUpdatable.cs b/V3/Screens/IUpdatable.cs
new file mode 100644
index 0000000..61972e7
--- /dev/null
+++ b/V3/Screens/IUpdatable.cs
@@ -0,0 +1,16 @@
+using Microsoft.Xna.Framework;
+
+namespace V3.Screens
+{
+ /// <summary>
+ /// An object that can be updated.
+ /// </summary>
+ public interface IUpdateable
+ {
+ /// <summary>
+ /// Updates the status of this object.
+ /// </summary>
+ /// <param name="gameTime">a snapshot of the game time</param>
+ void Update(GameTime gameTime);
+ }
+}