prosperon/source/engine/script.h

10 lines
147 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef SCRIPT_H
#define SCRIPT_H
struct s7_scheme;
extern struct s7_scheme *s7;
void script_init();
void script_run(const char *script);
#endif