diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 03:11:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 03:11:16 +0200 |
commit | b567a0d4ceed1ce0bb184d9c3f712b2ec37f2a41 (patch) | |
tree | b2fdf91f37b1b93f10f41d10e007c73e9d063096 /src/local-coords.hpp | |
parent | 6ebc64b4c61ea237f55438a4ebedf004648e65d7 (diff) |
more precompiled header stuff
Diffstat (limited to 'src/local-coords.hpp')
-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 { |