From 8bdfcb11a2c1023c684093c0f19f3cc65799e0f8 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 31 May 2014 11:24:29 -0500 Subject: Move some files around, relink --- SuperPolarity/Actors/Generators/Generator.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SuperPolarity/Actors/Generators/Generator.cs (limited to 'SuperPolarity/Actors/Generators/Generator.cs') diff --git a/SuperPolarity/Actors/Generators/Generator.cs b/SuperPolarity/Actors/Generators/Generator.cs new file mode 100644 index 0000000..dfbc40b --- /dev/null +++ b/SuperPolarity/Actors/Generators/Generator.cs @@ -0,0 +1,14 @@ +using System; + +namespace SuperPolarity +{ + public class Generator : Actor + { + public Generator(SuperPolarity newGame) + : base(newGame) + { + Collides = false; + } + } +} + -- cgit