diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-02 00:56:41 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-02 00:56:41 +0200 |
commit | d0a3b0d4401917dd02ad27b4f9a4b91699569e36 (patch) | |
tree | edd4472c39d4da226ea931691574e030eb663747 /tile.hpp | |
parent | 742579ca2fce1effe942928f5b94401e1e723f34 (diff) |
a
Diffstat (limited to 'tile.hpp')
-rw-r--r-- | tile.hpp | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -1,18 +1,14 @@ #pragma once -#include "tile-atlas.hpp" -#include "hash.hpp" #include "defs.hpp" - -#include <concepts> +#include <Magnum/Magnum.h> +#include <Magnum/Math/Vector3.h> #include <cstddef> -#include <tuple> -#include <array> +#include <cstdint> #include <memory> -#include <unordered_map> -#include <utility> namespace Magnum::Examples { +struct tile_atlas; constexpr inline Vector3 TILE_SIZE = { 50, 50, 50 }; struct tile_image final |