pppi-rpg-game/program/game_engine.h

33 lines
942 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @brief Класс GameEngine является основой для всей архитектуры игры.
*/
class GameEngine {
public:
/**
* @brief Инициализирует игровой движок и все его подсистемы.
*/
void initialize();
/**
* @brief Запускает основной игровой цикл.
*/
void run();
/**
* @brief Останавливает игру и освобождает ресурсы.
*/
void shutdown();
private:
/**
* @brief Обновляет все подсистемы (физика, анимация, AI и т.д.).
* @param deltaTime Время, прошедшее с предыдущего обновления, в секундах.
*/
void update(float deltaTime);
/**
* @brief Рендерит текущее состояние игры.
*/
void render();
};