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

#include <string>

#include "Vector.hpp"

class BlockInfo;
struct lua_State;

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);
}