Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
PluginRmlui.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "plugin/APlugin.hpp"
4
5namespace Rmlui {
6class Plugin : public Engine::APlugin {
7 public:
8 using APlugin::APlugin;
9 ~Plugin() override = default;
10
11 void Bind() final;
12};
13} // namespace Rmlui
Abstract plugin class that add some utility functions to make it easier to register systems and resou...
Definition APlugin.hpp:9
Definition PluginRmlui.hpp:6
~Plugin() override=default
void Bind() final
Pure virtual method that must be implemented by derived plugin classes. This method is called when th...
Definition PluginRmlui.cpp:21
Definition CreateRmlContextError.hpp:5