You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
15 lines
342 B
#include "api.h"
|
|
|
|
int luaopen_system(lua_State *L);
|
|
int luaopen_renderer(lua_State *L);
|
|
|
|
static const luaL_Reg libs[] = {
|
|
{ "system", luaopen_system },
|
|
{ "renderer", luaopen_renderer },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
void api_load_libs(lua_State *L) {
|
|
for (int i = 0; libs[i].name; i++)
|
|
luaL_requiref(L, libs[i].name, libs[i].func, 1);
|
|
}
|
|
|