blob: 31df8a35469b629910af0d07ac9dea305a96c181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <Magnum/Magnum.h>
#include <Magnum/Platform/WindowlessWglApplication.h>
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();
static bool test_serializer();
};
} // namespace floormat
|