aboutsummaryrefslogtreecommitdiff
path: root/SuperPolarity/Actors/Generators/LineGenerator.cs
blob: abbafa907f390265beaf9b82444ea2421fd5d041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace SuperPolarity
{
	public class LineGenerator : Generator
	{
		public LineGenerator(SuperPolarity newGame)
			: base(newGame)
		{
		}
	}
}