aboutsummaryrefslogtreecommitdiff
path: root/SuperPolarity/Actors/Generators/Generator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SuperPolarity/Actors/Generators/Generator.cs')
-rw-r--r--SuperPolarity/Actors/Generators/Generator.cs6
1 files changed, 6 insertions, 0 deletions
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));
+ }
}
}