From fc645fce732e8163c7e1d79cdd405de62e6e95a2 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 23 Oct 2022 09:12:13 +0200 Subject: foo --- src/precomp.hpp | 34 +++++++++++++++++++++++----------- src/tile-defs.hpp | 6 ++++-- 2 files changed, 27 insertions(+), 13 deletions(-) (limited to 'src') diff --git a/src/precomp.hpp b/src/precomp.hpp index 2a19a1b7..ceeeca70 100644 --- a/src/precomp.hpp +++ b/src/precomp.hpp @@ -3,25 +3,37 @@ #include "compat/prelude.hpp" #include "compat/defs.hpp" #include "compat/assert.hpp" -#include "src/tile-defs.hpp" -#include "src/tile.hpp" -#include "src/tile-atlas.hpp" -#include "src/tile-iterator.hpp" -#include "src/chunk.hpp" -#include "src/global-coords.hpp" -#include "shaders/tile-shader.hpp" -#include "serialize/json-helper.hpp" + #include -#include +#include #include -#include -#include +#include +#include +#include #include + #include +#include +#include +#include +#include #include #include + +#include +#include +#include +#include + #include #include #include #include +#include +#include +#include +#include +#include +#include +#include #include 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 +#include +#include 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 -- cgit v1.2.3