From 4fc09567c557a1110180940cca40fd7144921026 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 3 Feb 2014 10:06:44 -0600 Subject: Removes spaces. --- SuperPolarity/Renderer.cs | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 SuperPolarity/Renderer.cs (limited to 'SuperPolarity/Renderer.cs') diff --git a/SuperPolarity/Renderer.cs b/SuperPolarity/Renderer.cs new file mode 100644 index 0000000..7ca8158 --- /dev/null +++ b/SuperPolarity/Renderer.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Microsoft.Xna.Framework.Graphics; + +namespace SuperPolarity +{ + class Renderer + { + + static List Actors; + + static Renderer() + { + Actors = new List(); + } + + static public void CheckIn(Actor actor) + { + Actors.Add(actor); + } + + static public void CheckOut(Actor actor) + { + Actors.Remove(actor); + } + + static public void Draw(SpriteBatch spriteBatch) + { + foreach (Actor actor in Actors) + { + actor.Draw(spriteBatch); + } + } + + static public void Empty() + { + Actors.Clear(); + } + } +} -- cgit