blob: 4647001e32a39c6c5feef7058eb52bc376089432 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <Magnum/Magnum.h>
#include <Magnum/Platform/WindowlessWglApplication.h>
namespace floormat {
struct app final : Platform::WindowlessWglApplication // NOLINT(cppcoreguidelines-virtual-class-destructor)
{
explicit app(const Arguments& arguments);
~app();
int exec() override;
static bool test_json();
static bool test_tile_iter();
static bool test_const_math();
};
} // namespace floormat
|