diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-02-11 01:15:19 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-02-11 01:15:19 -0600 |
| commit | d7a43ae2d3d4702bd199fa5d8ca84c7c6e78ed36 (patch) | |
| tree | 28be1c08e360ad3122042243a326f1352797d802 /SuperPolarityMac/Screen.cs | |
| parent | 6fceaa7b34f4d6efc497cda51679b37e530a61aa (diff) | |
Consolidate with mac project.
Diffstat (limited to 'SuperPolarityMac/Screen.cs')
| -rw-r--r-- | SuperPolarityMac/Screen.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/SuperPolarityMac/Screen.cs b/SuperPolarityMac/Screen.cs deleted file mode 100644 index 006b047..0000000 --- a/SuperPolarityMac/Screen.cs +++ /dev/null @@ -1,40 +0,0 @@ -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() - { - } - } -} |