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