summaryrefslogtreecommitdiffhomepage
path: root/test/app.hpp
blob: 943e53a37e058ac8a7f886fc9ec53e6b731673a8 (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 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();
};
} // namespace floormat