12 lines
270 B
C
12 lines
270 B
C
#pragma once
|
|
|
|
bool lua_is_playing();
|
|
void lua_process_debugger_commands();
|
|
void lua_init(const char* main_lua_file = "main.lua");
|
|
void lua_call_init();
|
|
void lua_call_update();
|
|
void lua_quit();
|
|
void lua_kill_thread();
|
|
void lua_toggle_debug();
|
|
//void lua_disable_debug();
|