X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/078dd693a22cc6793cf6f0f64820369cc606edf6..8bdfcb11a2c1023c684093c0f19f3cc65799e0f8:/SuperPolarity/Actors/Generators/Generator.cs?ds=sidebyside 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; + } + } +} +