blob: 6ec8110bc4f37a298c258ec057db7e423226224f (
plain) (
tree)
|
|
// 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);
};
|