diff options
Diffstat (limited to 'src/resources/questitemtext.h')
-rw-r--r-- | src/resources/questitemtext.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resources/questitemtext.h b/src/resources/questitemtext.h index 306fe27b8..01d6706ea 100644 --- a/src/resources/questitemtext.h +++ b/src/resources/questitemtext.h @@ -21,19 +21,21 @@ #ifndef RESOURCES_QUESTITEMTEXT_H #define RESOURCES_QUESTITEMTEXT_H +#include "enums/resources/questtype.h" + #include <string> #include "localconsts.h" struct QuestItemText final { - QuestItemText(const std::string &text0, const int type0) : + QuestItemText(const std::string &text0, const QuestTypeT type0) : text(text0), type(type0) { } std::string text; - int type; + QuestTypeT type; }; #endif // RESOURCES_QUESTITEMTEXT_H |