diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-24 19:03:06 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-24 19:03:06 +0100 |
commit | be5ccbe24086d5d4fb407f268c649dcbc36eda6b (patch) | |
tree | 12fae6d0758d0f26bf42d9a1438e2d021b411467 | |
parent | fa283385d43030eca4833c1992da99e472bb5a0a (diff) |
nitpick #50
-rw-r--r-- | src/crepe/api/Scene.h | 3 | ||||
-rw-r--r-- | src/doc/feature/scene.dox | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/crepe/api/Scene.h b/src/crepe/api/Scene.h index 22aadab..f6fdb2a 100644 --- a/src/crepe/api/Scene.h +++ b/src/crepe/api/Scene.h @@ -1,8 +1,9 @@ #pragma once -#include "util/OptionalRef.h" #include <string> +#include "../util/OptionalRef.h" + namespace crepe { class SceneManager; diff --git a/src/doc/feature/scene.dox b/src/doc/feature/scene.dox index bac1c87..d81df4c 100644 --- a/src/doc/feature/scene.dox +++ b/src/doc/feature/scene.dox @@ -36,7 +36,7 @@ concrete scene to be added. #include <crepe/api/LoopManager.h> #include <crepe/api/GameObject.h> #include <crepe/api/Scene.h> -#include <crepe/util/types.h> +#include <crepe/types.h> using namespace crepe; |