diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/app.hpp | 1 | ||||
-rw-r--r-- | test/script.cpp | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp index 4f6597d9..6ec88371 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -41,6 +41,7 @@ struct test_app final : private FM_APPLICATION static void test_raycast(); static void test_region(); static void test_saves(); + static void test_script(); static void test_serializer1(); static void test_tile_iter(); static void test_wall_atlas(); diff --git a/test/script.cpp b/test/script.cpp new file mode 100644 index 00000000..45ce9b1d --- /dev/null +++ b/test/script.cpp @@ -0,0 +1,20 @@ +#include "app.hpp" + +namespace floormat { + +namespace { + +void test_script1() +{ + +} + +} // namespace + +void test_app::test_script() +{ + test_script1(); +} + + +} // namespace floormat |