| 179 | } |
| 180 | |
| 181 | std::string Spell::formatCastSpell(SpellType type, uint32_t price) |
| 182 | { |
| 183 | return "Cast " + SpellManager::getSpellReadableName(type) + " [" + Helper::toString(price)+ " Mana]"; |
| 184 | } |
| 185 | |
| 186 | void Spell::fireSpellSound(Tile& tile, const std::string& soundFamily) |
| 187 | { |
nothing calls this directly
no test coverage detected