20 lines
418 B
C++
20 lines
418 B
C++
|
|
// ClassDB - code to manipulate class databases.
|
||
|
|
//
|
||
|
|
// It would have been easier to write this in Lua, but since every
|
||
|
|
// lua module in the system depends on it, it's safer to have it
|
||
|
|
// preloaded before we even open any of the lua files.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef GLOBALDB_HPP
|
||
|
|
#define GLOBALDB_HPP
|
||
|
|
|
||
|
|
#include "luastack.hpp"
|
||
|
|
|
||
|
|
int lpx_globaldb_global(lua_State *L);
|
||
|
|
|
||
|
|
void luaopen_lpx_globaldb(lua_State *L);
|
||
|
|
|
||
|
|
#endif // GLOBALDB_HPP
|
||
|
|
|
||
|
|
|