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/LineGenerator.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 SuperPolarity/Actors/Generators/LineGenerator.cs (limited to 'SuperPolarity/Actors/Generators/LineGenerator.cs') diff --git a/SuperPolarity/Actors/Generators/LineGenerator.cs b/SuperPolarity/Actors/Generators/LineGenerator.cs new file mode 100644 index 0000000..abbafa9 --- /dev/null +++ b/SuperPolarity/Actors/Generators/LineGenerator.cs @@ -0,0 +1,13 @@ +using System; + +namespace SuperPolarity +{ + public class LineGenerator : Generator + { + public LineGenerator(SuperPolarity newGame) + : base(newGame) + { + } + } +} + -- cgit