diff options
Diffstat (limited to 'src/tile-defs.hpp')
-rw-r--r-- | src/tile-defs.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tile-defs.hpp b/src/tile-defs.hpp index df26fe8e..51b04259 100644 --- a/src/tile-defs.hpp +++ b/src/tile-defs.hpp @@ -1,11 +1,13 @@ #pragma once #include <cstddef> +#include <cstdint> +#include <type_traits> namespace floormat { constexpr inline std::size_t TILE_MAX_DIM = 16; constexpr inline std::size_t TILE_COUNT = TILE_MAX_DIM*TILE_MAX_DIM; -constexpr inline float TILE_SIZE[3] = { 128, 128, 384 }; -constexpr inline double dTILE_SIZE[3] = { 128, 128, 384 }; +constexpr inline float TILE_SIZE[3] = { 64, 64, 64 }; +constexpr inline double dTILE_SIZE[3] = { 64, 64, 64 }; } // namespace floormat |