change app to core

This commit is contained in:
2025-12-06 10:15:23 +08:00
parent 6d44c61db8
commit 3171e87f7e
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#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) {
}