prosperon/source/engine/script.h
2021-12-01 03:29:18 +00:00

10 lines
147 B
C

#ifndef SCRIPT_H
#define SCRIPT_H
struct s7_scheme;
extern struct s7_scheme *s7;
void script_init();
void script_run(const char *script);
#endif