BallClass inklusive renderer / Drawfunktion erstellt

This commit is contained in:
2025-10-18 14:24:24 +02:00
parent 860d8febe6
commit 0e29919fd2
7 changed files with 93 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
//#include "Game.h"
#include "ax_game.hpp"
#include <iostream>
int main(int argc, char** argv)
{
@@ -11,8 +12,16 @@ int main(int argc, char** argv)
}
game.Shutdown();
*/
int i = 0;
ax_game AXGAME;
bool success = AXGAME.Init();
if(success){
AXGAME.RunLoop();
std::cout<< i++ << std::endl;
}
AXGAME.Shutdown();
return 0;
}