diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-08-23 18:17:21 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-08-23 18:17:21 +0200 |
commit | f5308a69ecb6404b02ca8cae1a49711dfceb2c33 (patch) | |
tree | ff4e86a7c011de494433d3239654ba700edb4988 /editor | |
parent | 54c89ca71fc7bbc94a4a6e1cbea2f4a8f1c62fad (diff) |
fix non-pch build
Diffstat (limited to 'editor')
-rw-r--r-- | editor/inspect.hpp | 1 | ||||
-rw-r--r-- | editor/vobj-editor.hpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/editor/inspect.hpp b/editor/inspect.hpp index de572666..5bfb7c1f 100644 --- a/editor/inspect.hpp +++ b/editor/inspect.hpp @@ -1,5 +1,6 @@ #pragma once #include <utility> +namespace floormat { struct entity; } namespace floormat::entities { struct erased_accessor; diff --git a/editor/vobj-editor.hpp b/editor/vobj-editor.hpp index e026a498..46b5dce1 100644 --- a/editor/vobj-editor.hpp +++ b/editor/vobj-editor.hpp @@ -1,7 +1,9 @@ #pragma once #include "src/entity-type.hpp" +#include "src/object-id.hpp" #include <memory> #include <map> +#include <Corrade/Containers/StringView.h> namespace Corrade::Containers { template<typename T> class BasicStringView; |