summaryrefslogtreecommitdiff
path: root/EnemyWave.cs
diff options
context:
space:
mode:
Diffstat (limited to 'EnemyWave.cs')
-rw-r--r--EnemyWave.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/EnemyWave.cs b/EnemyWave.cs
new file mode 100644
index 0000000..fff6d4a
--- /dev/null
+++ b/EnemyWave.cs
@@ -0,0 +1,8 @@
+using System;
+using System.Collections.Generic;
+
+[Serializable]
+public class EnemyWave
+{
+ public List<EnemyGroup> groups = new List<EnemyGroup>();
+}