#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/battle.h" #include "core/config.h" // Forward declarations for functions namespace PokEng { bool simulateBattle(Pokemon& pokemon1, Pokemon& pokemon2); } #endif // POKEMON_BATTLE_SIM_H