summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaJson.h
blob: 34d60ec6da2c5db7685daaa9d57da799653d5613 (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
28

// LuaJson.h

// Declares the Json exposure bindings to Lua





#pragma once





// fwd:
class cLuaState;





class cLuaJson
{
  public:
	/** Registers the Json library in the specified Lua state. */
	static void Bind(cLuaState & a_LuaState);
};