diff options
Diffstat (limited to 'test/app.hpp')
| -rw-r--r-- | test/app.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp new file mode 100644 index 00000000..53ee24b5 --- /dev/null +++ b/test/app.hpp @@ -0,0 +1,13 @@ +#pragma once +#include <Magnum/Magnum.h> +#include <Magnum/Platform/Sdl2Application.h> +namespace Magnum::Examples { +struct app final : Platform::Application // NOLINT(cppcoreguidelines-virtual-class-destructor) +{ + explicit app(const Arguments& arguments); + ~app(); + void drawEvent() override; + static void test_json(); + void test(); +}; +} // namespace Magnum::Examples |
