blob: c77c33694dd583cceeae2f88f05c5ef3a6bc33ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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();
};
} // namespace Magnum::Examples
|