diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/beingslot.h | 6 |
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 |