summaryrefslogtreecommitdiffstats
path: root/src/Bindings/ManualBindings.h
blob: 1b6e65654a2d0aa28532b7c7b97ba345b60d0fc6 (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
#pragma once

struct lua_State;





/** Provides namespace for the bindings. */
class ManualBindings
{
public:
	/** Binds all the manually implemented functions to tolua_S. */
	static void Bind(lua_State * tolua_S);
	
protected:
	/** Binds the manually implemented cRankManager glue code to tolua_S.
	Implemented in ManualBindings_RankManager.cpp. */
	static void BindRankManager(lua_State * tolua_S);
};