11 lines
241 B
C
11 lines
241 B
C
#pragma once
|
|
|
|
bool lua_is_playing();
|
|
void lua_init(const char* filename, const bool start_playing=true);
|
|
void lua_call_init();
|
|
void lua_call_update();
|
|
void lua_call_cmd(const char* str);
|
|
void lua_quit();
|
|
void lua_pause();
|
|
void lua_resume();
|