From 9d72ed2d5801b1506158082f08bd0b47e58db17f Mon Sep 17 00:00:00 2001 From: fschildt Date: Mon, 29 Sep 2025 13:20:43 +0200 Subject: renderer: major refactor; vectors: now aggregates --- src/games/tetris/Board.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/games/tetris/Board.hpp') diff --git a/src/games/tetris/Board.hpp b/src/games/tetris/Board.hpp index 0019a7f..f841e2f 100644 --- a/src/games/tetris/Board.hpp +++ b/src/games/tetris/Board.hpp @@ -1,7 +1,6 @@ #pragma once #include -#include class Tetromino; @@ -15,7 +14,7 @@ public: Board(); int32_t PlaceTetromino(Tetromino &tetromino); - void Draw(int32_t level, RenderGroup& render_group); + void Draw(int32_t level); private: -- cgit v1.2.3