From 327d14d772ecc34716e09093ae0397570439b819 Mon Sep 17 00:00:00 2001 From: Daniel Herrmann Date: Thu, 5 Jun 2014 12:04:01 +0200 Subject: [PATCH] GameType --- src/EnumGameType.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/EnumGameType.cs 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 + } +}