diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-29 17:45:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-29 17:45:52 +0300 |
commit | 2d32dc27210d16102f9200de115f2c3f79a5cb22 (patch) | |
tree | 5aa84ebe6c5c1d708b14bee2bf0ce95df714fc1d /src/resources/questeffect.h | |
parent | 7bdb50605562e47f1d6ae134881c09bd42293be5 (diff) | |
download | plus-2d32dc27210d16102f9200de115f2c3f79a5cb22.tar.gz plus-2d32dc27210d16102f9200de115f2c3f79a5cb22.tar.bz2 plus-2d32dc27210d16102f9200de115f2c3f79a5cb22.tar.xz plus-2d32dc27210d16102f9200de115f2c3f79a5cb22.zip |
Use BeingTypeId in Being for subtypeid.
Diffstat (limited to 'src/resources/questeffect.h')
-rw-r--r-- | src/resources/questeffect.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resources/questeffect.h b/src/resources/questeffect.h index c152ce0e8..c4cb13e3e 100644 --- a/src/resources/questeffect.h +++ b/src/resources/questeffect.h @@ -21,6 +21,8 @@ #ifndef RESOURCES_QUESTEFFECT_H #define RESOURCES_QUESTEFFECT_H +#include "enums/simpletypes/beingtypeid.h" + #include <set> #include <string> @@ -31,7 +33,7 @@ struct QuestEffect final QuestEffect() : map(), var(0), - id(0), + id(BeingTypeId_zero), effectId(0), values() { @@ -39,7 +41,7 @@ struct QuestEffect final std::string map; int var; - int id; + BeingTypeId id; int effectId; std::set<int> values; }; |