summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-16 17:54:43 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-16 17:54:43 +0300
commit5a007084e304048549233118707f5ab44f067e1a (patch)
treebf4ae0fc5296b8275f1d66a0b08044ed5f8b88a2 /src/resources
parent56b2915de96cf2a94f876b5e56fad2f34cff8052 (diff)
downloadplus-5a007084e304048549233118707f5ab44f067e1a.tar.gz
plus-5a007084e304048549233118707f5ab44f067e1a.tar.bz2
plus-5a007084e304048549233118707f5ab44f067e1a.tar.xz
plus-5a007084e304048549233118707f5ab44f067e1a.zip
Move questtype into separate file.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/questtype.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/resources/questtype.h b/src/resources/questtype.h
new file mode 100644
index 000000000..9a0805a79
--- /dev/null
+++ b/src/resources/questtype.h
@@ -0,0 +1,34 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2012-2014 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 RESOURCES_QUESTTYPE_H
+#define RESOURCES_QUESTTYPE_H
+
+namespace QuestType
+{
+ enum Type
+ {
+ TEXT = 0,
+ NAME = 1,
+ REWARD = 2
+ };
+}
+
+#endif // RESOURCES_QUESTTYPE_H