diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/local-coords.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/local-coords.hpp b/src/local-coords.hpp index cb7a5c24..34aa09f1 100644 --- a/src/local-coords.hpp +++ b/src/local-coords.hpp @@ -1,9 +1,12 @@ #pragma once #include "compat/assert.hpp" #include "tile-defs.hpp" -#include <concepts> -#include <Magnum/Math/Vector2.h> -#include <Magnum/Math/Vector3.h> +#include <type_traits> + +namespace Magnum::Math { +template<class T> class Vector2; +template<class T> class Vector3; +} // namespace Magnum::Math namespace floormat { |