From 05e4b948df39b47d33067049cf51fd3be7749031 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 31 May 2014 12:39:02 -0500 Subject: Moves some files around! --- SuperPolarity/Actors/Generators/Generator.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'SuperPolarity/Actors/Generators/Generator.cs') diff --git a/SuperPolarity/Actors/Generators/Generator.cs b/SuperPolarity/Actors/Generators/Generator.cs index dfbc40b..4e2cc3e 100644 --- a/SuperPolarity/Actors/Generators/Generator.cs +++ b/SuperPolarity/Actors/Generators/Generator.cs @@ -9,6 +9,12 @@ namespace SuperPolarity { Collides = false; } + + public override void Draw (Microsoft.Xna.Framework.Graphics.SpriteBatch spriteBatch) + { + base.Draw (spriteBatch); + spriteBatch.Draw(BoxTexture, Box, new Color(255, 0, 255, 25)); + } } } -- cgit