refactor(new_editor): tighten app dependency boundaries

This commit is contained in:
2026-04-19 02:48:41 +08:00
parent 7429f22fb1
commit c59cd83c38
86 changed files with 1754 additions and 1077 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <XCEngine/RHI/RHIDevice.h>
namespace XCEngine::UI::Editor::Host {
class ViewportRenderHost {
public:
virtual ~ViewportRenderHost() = default;
[[nodiscard]] virtual ::XCEngine::RHI::RHIDevice* GetRHIDevice() const = 0;
};
} // namespace XCEngine::UI::Editor::Host