0
0
mirror of https://github.com/Nimac0/SDL_Minigame synced 2026-01-12 13:43:41 +00:00

changes to make chickengame work with updated textureManager

future changes regarding the removal of the character selection needed
This commit is contained in:
freezarite 2024-11-05 18:38:53 +01:00
parent 6de979d794
commit 6bedb08d9b
2 changed files with 4 additions and 0 deletions

2
.gitignore vendored
View File

@ -6,6 +6,8 @@ Makefile
install_manifest.txt
.cache/
build/
cmake-build-debug/
.idea/
# Compiled files
*.suo

View File

@ -141,6 +141,8 @@ void GameInternal::init(const char* title, int xpos, int ypos, int width, int he
// loading music
// assets->addMusic("background_music", "assets/sound/background_music.mp3");
this->gameInstance = GameFactory::instance().create(this);
this->gameInstance->init();
}