stuff-from-scratch/test/test_utils/TestUiApplication.h
2023-12-21 09:18:44 +00:00

16 lines
No EOL
331 B
C++

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