dxx-rebirth/main/script.h
md2211 d393f32eed * Removed executable flag on most files
* Reverted value of SOUND_MAX_VOLUME
2007-09-21 19:06:05 +00:00

14 lines
292 B
C

#ifndef _SCRIPT_H
#define _SCRIPT_H
void script_notify(int nt_type, ...);
#define NT_ROBOT_DIED 1
void script_init();
void script_reset(); // clear all functions and variabeles
int script_load(char *filename);
//int script_exec(char *function, char *args, ...);
void script_done();
#endif