dxx-rebirth/main/script.h

14 lines
292 B
C
Raw Normal View History

2006-03-20 16:43:15 +00:00
#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