summaryrefslogtreecommitdiff
path: root/src/enums/net/servertype.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-06 18:27:23 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-06 18:27:23 +0300
commit1db4d18ed1c04548ce8414adfb4e7cf830b39279 (patch)
tree4534efeb99af72798c8074a23a4b47a5bf6b3e75 /src/enums/net/servertype.h
parent088ce632451aef33f28801029aaded8c5a4c9dac (diff)
downloadplus-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.gz
plus-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.bz2
plus-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.xz
plus-1db4d18ed1c04548ce8414adfb4e7cf830b39279.zip
Move servertype enum into separate file.
Diffstat (limited to 'src/enums/net/servertype.h')
-rw-r--r--src/enums/net/servertype.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/enums/net/servertype.h b/src/enums/net/servertype.h
new file mode 100644
index 000000000..d0ae2cdb9
--- /dev/null
+++ b/src/enums/net/servertype.h
@@ -0,0 +1,38 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef ENUMS_NET_SERVERTYPE_H
+#define ENUMS_NET_SERVERTYPE_H
+
+namespace ServerType
+{
+ enum Type
+ {
+ UNKNOWN = 0,
+ TMWATHENA,
+ EVOL,
+ EATHENA,
+ EVOL2
+ };
+}
+
+#endif // ENUMS_NET_SERVERTYPE_H