diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-14 07:33:47 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-14 07:33:47 +0100 |
commit | dc5e66b5a29fd7de8ddf59852ceefd982289b7c3 (patch) | |
tree | 18bf0a274f1595d6d2d6cfb32a3b3825d843e315 /test/app.hpp | |
parent | 29bdd5f2170b9d46a8b3b0973c4c0845d6a2b61e (diff) |
a
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/app.hpp b/test/app.hpp index 894401c8..2152e2e5 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -1,4 +1,5 @@ #pragma once +#include "src/world.hpp" #include <Magnum/Magnum.h> #ifdef __APPLE__ @@ -22,13 +23,15 @@ struct test_app final : private FM_APPLICATION explicit test_app(const Arguments& arguments); ~test_app(); int exec() override; - static chunk make_test_chunk(); + chunk& make_test_chunk(chunk_coords ch); static void test_json(); static void test_tile_iter(); static void test_const_math(); - static void test_serializer(); + void test_serializer(); static void test_entity(); static void test_loader(); static void test_bitmask(); + + world w; }; } // namespace floormat |