summaryrefslogtreecommitdiff
path: root/src/resources/beingslot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/beingslot.h')
-rw-r--r--src/resources/beingslot.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/resources/beingslot.h b/src/resources/beingslot.h
index c889b6045..1d4ef4d55 100644
--- a/src/resources/beingslot.h
+++ b/src/resources/beingslot.h
@@ -25,6 +25,8 @@
#include "resources/item/cardslist.h"
+#include <string>
+
#include "localconsts.h"
struct BeingSlot final
@@ -32,13 +34,15 @@ struct BeingSlot final
BeingSlot() :
spriteId(0),
cardsId(zeroCards),
- colorId(ItemColor_one)
+ colorId(ItemColor_one),
+ color()
{
}
int spriteId;
CardsList cardsId;
ItemColor colorId;
+ std::string color;
};
#endif // RESOURCES_BEINGSLOT_H