zengine/engine/include/editor/window/editor_main_window.h

9 lines
218 B
C++

#pragma once
#include "render/editor_system.h"
namespace api {
class EditorMainWindow : public EditorWindow {
public:
EditorMainWindow();
void Draw(FrameGraph& graph, RenderEditorContext& context) override;
};
}