| 111 | } |
| 112 | |
| 113 | void SpellManager::write(const Spell& spell, std::ostream& os) |
| 114 | { |
| 115 | os << spell.getName(); |
| 116 | spell.exportToStream(os); |
| 117 | } |
| 118 | |
| 119 | void SpellManager::checkSpellCast(GameMap* gameMap, SpellType type, const InputManager& inputManager, InputCommand& inputCommand) |
| 120 | { |
nothing calls this directly
no test coverage detected