2023-01-05 16:40:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GuiApplication.h"
|
2023-01-12 11:54:08 +00:00
|
|
|
#include "Scene.h"
|
2023-01-05 16:40:27 +00:00
|
|
|
|
2023-12-27 12:20:02 +00:00
|
|
|
#include "Pointer.h"
|
2023-01-05 16:40:27 +00:00
|
|
|
|
|
|
|
class TestUiApplication : public GuiApplication
|
|
|
|
{
|
|
|
|
public:
|
2023-12-21 09:18:44 +00:00
|
|
|
TestUiApplication(Ptr<CommandLineArgs> args = nullptr, Ptr<MainApplication> mainApp = nullptr);
|
2023-01-05 16:40:27 +00:00
|
|
|
|
|
|
|
DesktopManager* getDesktopManager() const;
|
2023-01-12 11:54:08 +00:00
|
|
|
|
|
|
|
Scene* getMainWindowScene() const;
|
2023-01-05 16:40:27 +00:00
|
|
|
};
|