Converted test application from QuickApp to proper sub class.
This commit is contained in:
24
private/raid_test/application.hpp
Normal file
24
private/raid_test/application.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#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)
|
||||
Reference in New Issue
Block a user