9 lines
218 B
C++
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;
|
|
};
|
|
} |