]> git.r.bdr.sh - rbdr/super-polarity/blame - SuperPolarity/Actors/Generators/Generator.cs
Re-include the mac project in the main solution
[rbdr/super-polarity] / SuperPolarity / Actors / Generators / Generator.cs
CommitLineData
8bdfcb11 1using System;
fdba5d09 2using Microsoft.Xna.Framework;
8bdfcb11
BB
3
4namespace 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