12 lines
182 B
C
12 lines
182 B
C
|
#pragma once
|
||
|
|
||
|
#include <include/api.h>
|
||
|
#include <include/proxyinterface.h>
|
||
|
|
||
|
class PluginHandler
|
||
|
{
|
||
|
public:
|
||
|
bool load(std::string path);
|
||
|
void loadPlugins(std::string path);
|
||
|
};
|