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

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