diff options
Diffstat (limited to 'SuperPolarity/Actors/Generators/FanGenerator.cs')
| -rw-r--r-- | SuperPolarity/Actors/Generators/FanGenerator.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/SuperPolarity/Actors/Generators/FanGenerator.cs b/SuperPolarity/Actors/Generators/FanGenerator.cs new file mode 100644 index 0000000..af4bf74 --- /dev/null +++ b/SuperPolarity/Actors/Generators/FanGenerator.cs @@ -0,0 +1,13 @@ +using System; + +namespace SuperPolarity +{ + public class FanGenerator : Generator + { + public FanGenerator(SuperPolarity newGame) + : base(newGame) + { + } + } +} + |