25 lines
509 B
C++
25 lines
509 B
C++
|
|
#pragma once
|
|
|
|
#if !defined(RAID_TEST_APPLICATION_HPP_INCLUDED)
|
|
#define RAID_TEST_APPLICATION_HPP_INCLUDED 1
|
|
|
|
#include "raid/raid.hpp"
|
|
|
|
namespace raid_test
|
|
{
|
|
class Application : public raid::Application
|
|
{
|
|
protected:
|
|
bool init() override;
|
|
void configureImgui() override;
|
|
void render() override;
|
|
std::string getFolderName() override;
|
|
std::string getWindowTitle() override;
|
|
};
|
|
|
|
extern Application gApplication;
|
|
} // namespace raid_test
|
|
|
|
#endif // !defined(RAID_TEST_APPLICATION_HPP_INCLUDED)
|