CppPlugins/src/main/cpp/src/plugin.cpp

24 lines
325 B
C++
Raw Normal View History

2020-02-20 19:23:28 +01:00
#include <plugin.h>
2020-02-21 09:57:24 +01:00
#include <iostream>
2020-02-20 19:23:28 +01:00
void CppPlugin::onLoad() {
}
void CppPlugin::onEnable() {
}
void CppPlugin::onDisable() {
}
std::map<std::string, eventfptr> CppPlugin::getEvents() {
2020-02-21 09:57:24 +01:00
std::cout << "Defaults::getEvents()" << std::endl;
2020-02-20 19:23:28 +01:00
return std::map<std::string, eventfptr>();
}
CppPlugin::~CppPlugin() {
}