diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-01 14:08:24 +0200 | 
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-01 14:09:13 +0200 | 
| commit | c775ca6133d93ed97359a6a50bd94a5563c740de (patch) | |
| tree | 9d3efb1c7e7538ff9d5cae408d2c29f9dd3daeab /src/games/tetris/Board.hpp | |
| parent | 41c2e2ecfcccf62b3c646980dd283848e33a8134 (diff) | |
general refactoring, prepare breakout game
Diffstat (limited to 'src/games/tetris/Board.hpp')
| -rw-r--r-- | src/games/tetris/Board.hpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/src/games/tetris/Board.hpp b/src/games/tetris/Board.hpp index f841e2f..2e2edb2 100644 --- a/src/games/tetris/Board.hpp +++ b/src/games/tetris/Board.hpp @@ -1,6 +1,7 @@  #pragma once -#include <basic/defs.hpp> +#include <common/defs.hpp> +  class Tetromino; @@ -9,6 +10,7 @@ struct BoardPos {      int32_t y;  }; +  class Board {  public:      Board();  | 
