blob: 5be5de1e519bd7d62d2b98f7692b9d0af396f7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <shared/lua_api/common.hpp>
void loadCommonLibs(lua_State* L){
lua_getglobal(L,"GAME");
lua_pushcfunction(L,make_crashy);
lua_setfield(L,-2,"crashy");
}
void gameloop_common(lua_State* L){
}
|