From 74c155708d85abfc2cf227c08de4f27003015b3f Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 18 Nov 2013 21:51:56 -0600 Subject: I have the worst commits ever. --- Super Polarity/Screen.cs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Super Polarity/Screen.cs (limited to 'Super Polarity/Screen.cs') diff --git a/Super Polarity/Screen.cs b/Super Polarity/Screen.cs new file mode 100644 index 0000000..8cea5c9 --- /dev/null +++ b/Super Polarity/Screen.cs @@ -0,0 +1,38 @@ +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 Screen(SuperPolarity game) + { + 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() + { + } + } +} -- cgit