X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/8bdfcb11a2c1023c684093c0f19f3cc65799e0f8..05e4b948df39b47d33067049cf51fd3be7749031:/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)); + } } }