]>
Commit | Line | Data |
---|---|---|
8bdfcb11 | 1 | using System; |
fdba5d09 | 2 | using Microsoft.Xna.Framework; |
8bdfcb11 BB |
3 | |
4 | namespace SuperPolarity | |
5 | { | |
6 | public class Generator : Actor | |
7 | { | |
8 | public Generator(SuperPolarity newGame) | |
9 | : base(newGame) | |
10 | { | |
11 | Collides = false; | |
12 | } | |
05e4b948 BB |
13 | |
14 | public override void Draw (Microsoft.Xna.Framework.Graphics.SpriteBatch spriteBatch) | |
15 | { | |
16 | base.Draw (spriteBatch); | |
17 | spriteBatch.Draw(BoxTexture, Box, new Color(255, 0, 255, 25)); | |
18 | } | |
8bdfcb11 BB |
19 | } |
20 | } | |
21 |