aboutsummaryrefslogtreecommitdiff
path: root/src/games/tetris/Board.hpp
diff options
context:
space:
mode:
authorfschildt <florian.schildt@protonmail.com>2025-09-29 13:20:43 +0200
committerfschildt <florian.schildt@protonmail.com>2025-09-29 13:20:43 +0200
commit9d72ed2d5801b1506158082f08bd0b47e58db17f (patch)
tree1fe30ab6dae55db5a3faaac6b8d54f67a31255d3 /src/games/tetris/Board.hpp
parentd793b79dea7d5e19982128528276cf05d6c23b5d (diff)
renderer: major refactor; vectors: now aggregates
Diffstat (limited to 'src/games/tetris/Board.hpp')
-rw-r--r--src/games/tetris/Board.hpp3
1 files changed, 1 insertions, 2 deletions
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 <basic/defs.hpp>
-#include <renderer/RenderGroup.hpp>
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: