mirror of
https://github.com/zhenyan121/SporeBG-Conid.git
synced 2026-04-10 06:14:08 +08:00
16 lines
331 B
C++
16 lines
331 B
C++
#include "GameApplication.h"
|
|
|
|
GameApplication::GameApplication() {
|
|
m_gameSession = std::make_unique<GameSession>();
|
|
m_inputManager = std::make_unique<InputManager>();
|
|
|
|
}
|
|
|
|
void GameApplication::initialize() {
|
|
m_gameSession->initialize();
|
|
|
|
}
|
|
|
|
SDL_AppResult GameApplication::handleInputEvent(SDL_Event* event) {
|
|
|
|
} |