stuff-from-scratch/test/test_utils/TestUiApplication.h
2023-01-12 11:54:08 +00:00

16 lines
No EOL
353 B
C++

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