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

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