]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - SuperPolarityMac/Screen.cs
Removes spaces.
[rbdr/super-polarity] / SuperPolarityMac / Screen.cs
diff --git a/SuperPolarityMac/Screen.cs b/SuperPolarityMac/Screen.cs
new file mode 100644 (file)
index 0000000..006b047
--- /dev/null
@@ -0,0 +1,40 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Graphics;
+
+namespace SuperPolarity
+{
+    class Screen
+    {
+        protected SuperPolarity Game;
+        public bool Active;
+        public Screen(SuperPolarity game)
+        {
+            Active = false;
+            Game = game;
+        }
+
+        public virtual void Update(GameTime gameTime)
+        {
+        }
+
+        public virtual void Draw(SpriteBatch spriteBatch)
+        {
+        }
+
+        public virtual void LoadContent()
+        {
+        }
+
+        public virtual void Initialize()
+        {
+        }
+
+        public virtual void CleanUp()
+        {
+        }
+    }
+}