Files
pokemon-battle-engine/include/pokemon_battle_sim.h
2025-08-15 14:30:00 +00:00

19 lines
431 B
C++

#ifndef POKEMON_BATTLE_SIM_H
#define POKEMON_BATTLE_SIM_H
// Main header file for Pokemon Battle Simulator
// Includes all core functionality
#include "core/types.h"
#include "core/pokemon.h"
#include "core/pokemon_stats.h"
#include "core/battle.h"
#include "core/config.h"
// Forward declarations for functions
namespace PokEng {
bool simulateBattle(Pokemon& pokemon1, Pokemon& pokemon2);
}
#endif // POKEMON_BATTLE_SIM_H