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

9 lines
218 B
C
Raw Normal View History

2024-12-17 20:57:52 +08:00
#pragma once
#include "render/editor_system.h"
namespace api {
class EditorMainWindow : public EditorWindow {
public:
EditorMainWindow();
2024-12-19 17:23:52 +08:00
void Draw(FrameGraph& graph, RenderEditorContext& context) override;
2024-12-17 20:57:52 +08:00
};
}