summaryrefslogtreecommitdiffstats
path: root/src/Plugin.hpp
blob: 13b126e21bdfbe9ebed8061a780bd7fb68c69154 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include <string>

#include "Vector.hpp"

class BlockInfo;
struct lua_State;
class Chat;

namespace PluginSystem {
	void Init();

	lua_State* GetLuaState();

	void Execute(const std::string &luaCode, bool except = false);

	void CallOnChangeState(std::string newState);

	void CallOnTick(double deltaTime);

	BlockInfo RequestBlockInfo(Vector blockPos);

	void CallOnChatMessage(const Chat& chat, int position);
}