summaryrefslogtreecommitdiffstats
path: root/src/Plugin.hpp
blob: a5f75e12efb6a8ba86e5819188302ed468799990 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <string>

namespace PluginSystem {
	void Init();

	void Execute(const std::string &luaCode);

	void CallOnChangeState(std::string newState);
}