Start trying own game

This commit is contained in:
2025-10-12 19:40:12 +02:00
parent 0a83eb3c10
commit 860d8febe6
8 changed files with 398 additions and 0 deletions

41
Capter1/ax_game.cpp Normal file
View File

@@ -0,0 +1,41 @@
#include "ax_game.hpp"
#include "ball.hpp"
ax_game::ax_game()
{
ax_Window = nullptr;
ax_Renderer = nullptr;
ax_TickCounter = 0;
ax_IsRunning = true;
ax_ball_one = ball();
}
ax_game::~ax_game()
{
ax_ball_one.~ball();
}
bool ax_game::Init(){
}
void ax_game::RunLoop(){
}
void ax_game::Shutdown(){
}
void ax_game::Input(){
}
void ax_game::Update(){
}
void ax_game::Output(){
}