Exemplo n.º 1
0
void l_graphics_window_register(lua_State* state) {
  l_tools_registerModule(state, "window", windowFreeFuncs);
}
Exemplo n.º 2
0
Arquivo: system.c Projeto: dns/CLove
int l_system_register(lua_State* state) {
  l_tools_registerModule(state, "system", regFuncs);
  return 0;
}
Exemplo n.º 3
0
Arquivo: audio.c Projeto: dns/CLove
int l_audio_register(lua_State *state) {
	l_tools_registerModule(state, "audio", regFuncs);
	moduleData.audioDataMT = l_tools_makeTypeMetatable(state, SourceMetatableFuncs);
	return 1;
}