添加ui_editor编辑器模块初始代码

This commit is contained in:
2026-03-20 17:08:06 +08:00
parent c52b4ef35c
commit 376fa08e56
34 changed files with 2758 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include "Panel.h"
namespace UI {
class SceneViewPanel : public Panel {
public:
SceneViewPanel();
void Render() override;
private:
void RenderGrid();
};
}