blob: e108c4f83071d44f4b733efbd9ae94df8cf7a376 (
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
26
27
|
#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);
void CallOnDisconnected(const std::string &reason);
}
|