15 lines
298 B
C++
15 lines
298 B
C++
#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
|