X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/078dd693a22cc6793cf6f0f64820369cc606edf6..8bdfcb11a2c1023c684093c0f19f3cc65799e0f8:/SuperPolarity/Actors/Generators/PointGenerator.cs?ds=sidebyside diff --git a/SuperPolarity/Actors/Generators/PointGenerator.cs b/SuperPolarity/Actors/Generators/PointGenerator.cs new file mode 100644 index 0000000..a753480 --- /dev/null +++ b/SuperPolarity/Actors/Generators/PointGenerator.cs @@ -0,0 +1,13 @@ +using System; + +namespace SuperPolarity +{ + public class PointGenerator : Generator + { + public PointGenerator(SuperPolarity newGame) + : base(newGame) + { + } + } +} +