| 46 | } |
| 47 | |
| 48 | static std::shared_ptr<Game_BattleAlgorithm::AlgorithmBase> MakeAttackAllies(Game_Enemy& enemy, int hits) { |
| 49 | return std::make_shared<Game_BattleAlgorithm::Normal>(&enemy, Main_Data::game_enemyparty->GetRandomActiveBattler(), hits); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | std::unique_ptr<AlgorithmBase> CreateAlgorithm(std::string_view name) { |
no test coverage detected