blob: 44fbed11878d89270628b3191d03593ee4619ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <Magnum/Magnum.h>
#include <Magnum/Platform/WindowlessWglApplication.h>
namespace Magnum::Examples {
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();
};
} // namespace Magnum::Examples
|