9 lines
171 B
C
9 lines
171 B
C
|
|
#pragma once
|
||
|
|
#include "render/editor_system.h"
|
||
|
|
namespace api {
|
||
|
|
class EditorMainWindow : public EditorWindow {
|
||
|
|
public:
|
||
|
|
EditorMainWindow();
|
||
|
|
void Draw() override;
|
||
|
|
};
|
||
|
|
}
|