Files
integration/luprex/syscpp/globaldb.hpp

20 lines
418 B
C++
Raw Normal View History

2020-11-27 13:21:07 -05:00
// 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