14 lines
368 B
C++
14 lines
368 B
C++
|
#ifndef PKMNLIB_AI_RUNNER_HPP
|
||
|
#define PKMNLIB_AI_RUNNER_HPP
|
||
|
|
||
|
#include <PkmnLib/Battling/Library/BattleLibrary.hpp>
|
||
|
#include "../src/PokemonAI.hpp"
|
||
|
|
||
|
class Runner {
|
||
|
public:
|
||
|
static void Run(const PkmnLib::Battling::BattleLibrary* library, PkmnLibAI::PokemonAI* aiOne,
|
||
|
PkmnLibAI::PokemonAI* aiTwo, size_t runs);
|
||
|
};
|
||
|
|
||
|
#endif // PKMNLIB_AI_RUNNER_HPP
|