From 070de3f46a3d68d037b8d76375244ae320046127 Mon Sep 17 00:00:00 2001 From: moonleay Date: Wed, 18 Dec 2024 09:26:43 +0100 Subject: [PATCH] fix: fixed code not compiling --- MazeParser.cpp | 2 +- main.cpp | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/MazeParser.cpp b/MazeParser.cpp index 0433f06..56c669e 100644 --- a/MazeParser.cpp +++ b/MazeParser.cpp @@ -1,5 +1,5 @@ #include "MazeParser.h" - +#include "Maze.h" #include "Exceptions/ExitGame.h" #include "Exceptions/MalformedMaze.h" diff --git a/main.cpp b/main.cpp index 4a7f05c..d7629f8 100644 --- a/main.cpp +++ b/main.cpp @@ -39,7 +39,5 @@ int main() cout << "Schoenen Tag noch!" << "\n"; } - - // Beende das Programm return 0; }