summaryrefslogtreecommitdiff
path: root/src/resources/npcdialogmenuinfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-10-29 00:05:11 +0300
committerAndrei Karas <akaras@inbox.ru>2015-10-29 00:05:11 +0300
commit9b4d3bb164034b1e8a5b7c43572a6649560c0e4a (patch)
treed0bba2d789cc11c28bc77912ebacb7d1ae1ce4ef /src/resources/npcdialogmenuinfo.h
parent5973d759a2473425e52efd066892c35ab7502ed1 (diff)
downloadplus-9b4d3bb164034b1e8a5b7c43572a6649560c0e4a.tar.gz
plus-9b4d3bb164034b1e8a5b7c43572a6649560c0e4a.tar.bz2
plus-9b4d3bb164034b1e8a5b7c43572a6649560c0e4a.tar.xz
plus-9b4d3bb164034b1e8a5b7c43572a6649560c0e4a.zip
Add missing file.
Diffstat (limited to 'src/resources/npcdialogmenuinfo.h')
-rw-r--r--src/resources/npcdialogmenuinfo.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/resources/npcdialogmenuinfo.h b/src/resources/npcdialogmenuinfo.h
new file mode 100644
index 000000000..ddc12ff40
--- /dev/null
+++ b/src/resources/npcdialogmenuinfo.h
@@ -0,0 +1,46 @@
+/*
+ * The ManaPlus Client
+ * 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 RESOURCES_NPCDIALOGMENUINFO_H
+#define RESOURCES_NPCDIALOGMENUINFO_H
+
+#include "resources/npcbuttoninfo.h"
+#include "resources/npcimageinfo.h"
+#include "resources/npctextinfo.h"
+
+#include "utils/stringvector.h"
+
+#include "localconsts.h"
+
+struct NpcDialogMenuInfo final
+{
+ NpcDialogMenuInfo() :
+ buttons(),
+ images(),
+ texts()
+ {
+ }
+
+ std::vector<NpcButtonInfo*> buttons;
+ std::vector<NpcImageInfo*> images;
+ std::vector<NpcTextInfo*> texts;
+};
+
+#endif // RESOURCES_NPCDIALOGMENUINFO_H