From b0edb4219ea4df381d0235aa34b74799334aa0b2 Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Wed, 28 Jan 2026 20:01:46 +0100 Subject: finished merging code and simplifying file structure --- src/Game/display.cpp | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/Game/display.cpp (limited to 'src/Game/display.cpp') diff --git a/src/Game/display.cpp b/src/Game/display.cpp deleted file mode 100644 index 4fb16cb..0000000 --- a/src/Game/display.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "Game.hpp" - -#include -#include -#include - - -void Game::displayBoard() { - for (int i = 0; i < boardHeight; i++) { - for (int j = 0; j < boardWidth; j++) - putchar(tileMap[i][j]); - putchar('\n'); - } -} \ No newline at end of file -- cgit v1.2.3