]> git.r.bdr.sh - rbdr/super-polarity/blame - SuperPolarity/Actors/Generators/Generator.cs
Moves some files around!
[rbdr/super-polarity] / SuperPolarity / Actors / Generators / Generator.cs
CommitLineData
8bdfcb11
BB
1using System;
2
3namespace SuperPolarity
4{
5 public class Generator : Actor
6 {
7 public Generator(SuperPolarity newGame)
8 : base(newGame)
9 {
10 Collides = false;
11 }
05e4b948
BB
12
13 public override void Draw (Microsoft.Xna.Framework.Graphics.SpriteBatch spriteBatch)
14 {
15 base.Draw (spriteBatch);
16 spriteBatch.Draw(BoxTexture, Box, new Color(255, 0, 255, 25));
17 }
8bdfcb11
BB
18 }
19}
20