diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-05-31 12:39:02 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-05-31 12:39:02 -0500 |
| commit | 05e4b948df39b47d33067049cf51fd3be7749031 (patch) | |
| tree | 36a0151b009e29a16e34bfecb31a4a99ba3a5d86 /SuperPolarity/Actors/Generators/Generator.cs | |
| parent | 8bdfcb11a2c1023c684093c0f19f3cc65799e0f8 (diff) | |
Moves some files around!
Diffstat (limited to 'SuperPolarity/Actors/Generators/Generator.cs')
| -rw-r--r-- | SuperPolarity/Actors/Generators/Generator.cs | 6 |
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)); + } } } |