stuff-from-scratch/test/test_utils/TestUiApplication.h
2023-12-27 12:20:02 +00:00

16 lines
No EOL
332 B
C++

#pragma once
#include "GuiApplication.h"
#include "Scene.h"
#include "Pointer.h"
class TestUiApplication : public GuiApplication
{
public:
TestUiApplication(Ptr<CommandLineArgs> args = nullptr, Ptr<MainApplication> mainApp = nullptr);
DesktopManager* getDesktopManager() const;
Scene* getMainWindowScene() const;
};