From 601ef6005e31de65203f864c0df2507410e901a9 Mon Sep 17 00:00:00 2001 From: moonleay Date: Sun, 19 Jan 2025 18:23:50 +0100 Subject: [PATCH] feat: defoldered --- Entity.cpp | 2 +- Game.cpp | 6 +++--- Game.h | 2 +- Maze.cpp | 4 ++-- Player.cpp | 4 ++-- Player.h | 2 +- Vector2d.cpp | 2 +- main.cpp | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Entity.cpp b/Entity.cpp index 68c45a9..55d7f51 100644 --- a/Entity.cpp +++ b/Entity.cpp @@ -1,4 +1,4 @@ -#include "Entities/Entity.h" +#include "Entity.h" #include "Maze.h" namespace game { diff --git a/Game.cpp b/Game.cpp index b28def1..869af38 100644 --- a/Game.cpp +++ b/Game.cpp @@ -1,7 +1,7 @@ -#include "Environment/Game.h" -#include "Environment/Maze.h" +#include "Game.h" +#include "Maze.h" #include "MovementNotPossible.h" -#include "../Exceptions/UnkownAction.h" +#include "UnkownAction.h" #include "Vector2d.h" using game::Player; diff --git a/Game.h b/Game.h index 399c43b..cf8a102 100644 --- a/Game.h +++ b/Game.h @@ -1,4 +1,4 @@ -#include "Environment/Maze.h" +#include "Maze.h" #include "Player.h" #include "GameState.h" #include "Entity.h" diff --git a/Maze.cpp b/Maze.cpp index f03b2d4..957c222 100644 --- a/Maze.cpp +++ b/Maze.cpp @@ -1,6 +1,6 @@ -#include "Environment/Maze.h" +#include "Maze.h" #include "Entity.h" -#include "Entities/Player.h" +#include "Player.h" #include "MalformedMaze.h" using game_exceptions::MalformedMaze; diff --git a/Player.cpp b/Player.cpp index fe98ec0..f3b026b 100644 --- a/Player.cpp +++ b/Player.cpp @@ -1,5 +1,5 @@ -#include "Entities/Player.h" -#include "../Environment/Maze.h" +#include "Player.h" +#include "Maze.h" #include "MovementNotPossible.h" #include "GameState.h" #include "Game.h" diff --git a/Player.h b/Player.h index 5e1a6be..e85460d 100644 --- a/Player.h +++ b/Player.h @@ -1,4 +1,4 @@ -#include "../Util/Vector2d.h" +#include "Vector2d.h" #include "GameState.h" #ifndef PLAYER_H diff --git a/Vector2d.cpp b/Vector2d.cpp index b7ed43a..51db2d9 100644 --- a/Vector2d.cpp +++ b/Vector2d.cpp @@ -1,4 +1,4 @@ -#include "Util/Vector2d.h" +#include "Vector2d.h" namespace game { diff --git a/main.cpp b/main.cpp index 9f65dd8..8187159 100644 --- a/main.cpp +++ b/main.cpp @@ -1,4 +1,4 @@ -#include "Environment/Maze.h" +#include "Maze.h" #include "Game.h" #include "MalformedMaze.h" #include "GameState.h"