diff options
Diffstat (limited to 'SuperPolarity/Actors/Generators/Generator.cs')
| -rw-r--r-- | SuperPolarity/Actors/Generators/Generator.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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; + } + } +} + |