diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-28 19:54:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-28 19:54:36 +0300 |
commit | 34a04d798ed0b4f4b652082da994c8648e4517e6 (patch) | |
tree | b7d98ca0f2b9e187c7eeec92ab60b7f5f25dface /src/resources/npcdialoginfo.h | |
parent | 887a4d50d0c966af5f19e5ed2fe8b5556a6f818d (diff) | |
download | plus-34a04d798ed0b4f4b652082da994c8648e4517e6.tar.gz plus-34a04d798ed0b4f4b652082da994c8648e4517e6.tar.bz2 plus-34a04d798ed0b4f4b652082da994c8648e4517e6.tar.xz plus-34a04d798ed0b4f4b652082da994c8648e4517e6.zip |
Add support for images in npc skined menu.
Diffstat (limited to 'src/resources/npcdialoginfo.h')
-rw-r--r-- | src/resources/npcdialoginfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/npcdialoginfo.h b/src/resources/npcdialoginfo.h index ce3e8e92a..aa73d2c01 100644 --- a/src/resources/npcdialoginfo.h +++ b/src/resources/npcdialoginfo.h @@ -22,6 +22,7 @@ #define RESOURCES_NPCDIALOGINFO_H #include "resources/npcbuttoninfo.h" +#include "resources/npcimageinfo.h" #include "utils/stringvector.h" @@ -31,12 +32,14 @@ struct NpcDialogInfo final { NpcDialogInfo() : buttons(), + images(), name(), hideText(false) { } std::vector<NpcButtonInfo*> buttons; + std::vector<NpcImageInfo*> images; std::string name; bool hideText; }; |