Converted test application from QuickApp to proper sub class.

This commit is contained in:
2025-09-20 15:27:08 +02:00
parent 0f2f5973fb
commit 58329a2033
4 changed files with 85 additions and 35 deletions

View 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)