#pragma once #include #include namespace floormat { struct floormat final : Platform::WindowlessWglApplication // NOLINT(cppcoreguidelines-virtual-class-destructor) { explicit floormat(const Arguments& arguments); ~floormat(); int exec() override; static bool test_json(); static bool test_tile_iter(); static bool test_const_math(); }; } // namespace floormat