Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
IRenderer.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "RmlUi/Core/RenderInterface.h"
4#include <RmlUi/Core.h>
5
6namespace Rmlui::Utils {
7class IRenderer : public Rml::RenderInterface {
8 public:
9 virtual void BeginFrame() = 0;
10 virtual void EndFrame() = 0;
11};
12} // namespace Rmlui::Utils
Definition IRenderer.hpp:7
virtual void BeginFrame()=0
virtual void EndFrame()=0
Definition IRenderer.hpp:6