From 6da9be5810bf82e9d0b3b2a8bce7606ef2e2bf93 Mon Sep 17 00:00:00 2001 From: fschildt Date: Tue, 20 Jan 2026 01:22:45 +0100 Subject: breakout: delete pong, add breakout --- src/games/Game.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/games/Game.hpp') diff --git a/src/games/Game.hpp b/src/games/Game.hpp index c75f586..0cdf4b9 100644 --- a/src/games/Game.hpp +++ b/src/games/Game.hpp @@ -16,7 +16,7 @@ public: minesweeper, snake, tetris, - pong + breakout }; enum GameStatus { @@ -54,7 +54,7 @@ protected: protected: virtual void Start() = 0; virtual void ProcessEvent(SDL_Event& event) = 0; - virtual void FinishUpdate(float dt) = 0; + virtual void Update(float dt) = 0; virtual void Draw() = 0; virtual void DrawGameStartMenu(); -- cgit v1.2.3