diff --git a/src/EnumGameType.cs b/src/EnumGameType.cs new file mode 100644 index 0000000..ea09277 --- /dev/null +++ b/src/EnumGameType.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace WorldOfPeacecraft +{ + public enum GameType + { + DRAGON, STAGHUNT, SKIRMISH + } +}