mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-23 04:33:09 +00:00
19 lines
295 B
C
19 lines
295 B
C
#ifndef ltask_h
|
|
#define ltask_h
|
|
|
|
#include "engine/lua/lua.h"
|
|
#include "engine/lua/lstate.h"
|
|
|
|
extern int32 task_tag;
|
|
|
|
void start_script();
|
|
void stop_script();
|
|
void next_script();
|
|
void identify_script();
|
|
void pause_scripts();
|
|
void unpause_scripts();
|
|
void find_script();
|
|
void break_here();
|
|
|
|
#endif
|