bump solution
Makefile.win [Build Error] [obj-debug//actions.o] Error 1
creature.h overriding `virtual int32_t Creature::getMaxMana() const'
\player.h conflicting return type specified for `virtual int64_t Player::getMaxMana() const'
When i change it it's give me error in changemana and when i change changemaxmana it's give me error in block hit .. and more and moreIf someone else gets this error dont forget to fix the ---->> Creature.h
from
virtual int32_t getHealth() const {return health;}
virtual int32_t getMaxHealth() const {return healthMax;}
virtual int32_t getMana() const {return mana;}
virtual int32_t getMaxMana() const {return manaMax;}
to:
virtual int64_t getHealth() const {return health;}
virtual int64_t getMaxHealth() const {return healthMax;}
virtual int64_t getMana() const {return mana;}
virtual int64_t getMaxMana() const {return manaMax;}