prosperon/source/engine/script.h

11 lines
148 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);
2022-02-06 10:14:57 -06:00
#endif