summaryrefslogtreecommitdiff
path: root/EnemyGroup.cs
blob: 7afbffedf56158b95c395501aaa43a192246d92c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

[Serializable]
public class EnemyGroup
{
	public enum EnemyType
	{
		DefaultEnemy,
		Fast
	}

	public EnemyType enemyType;

	public float number = 5f;
}