Created Capter2 for Test with componentbased objects

This commit is contained in:
2025-10-26 19:41:47 +01:00
parent 9e026c8074
commit f4f9560fa9
5 changed files with 197 additions and 0 deletions

20
Capter2/main.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include <iostream>
#include "game.hpp"
int main(int argc, char const *argv[])
{
game game;
bool success = game.Init(100,100,1024,768);
while (success)
{
game.RunLoop();
}
game.Shutdown();
return 0;
}