Using S7; edit Makefile for debug, windows compilation

This commit is contained in:
2022-12-12 16:48:21 +00:00
parent 998cb11218
commit 18eefd4937
483 changed files with 97382 additions and 301477 deletions

View File

@@ -1,7 +1,8 @@
#ifndef SCRIPT_H
#define SCRIPT_H
#include "mruby.h"
#include "s7.h"
extern s7_scheme *s7;
void script_init();
void script_run(const char *script);
@@ -10,7 +11,7 @@ void script_update(double dt);
void script_draw();
void script_editor();
void script_call(const char *f);
void script_call_sym(mrb_sym sym);
int script_has_sym(mrb_sym sym);
void script_call_sym(s7_pointer sym);
int script_has_sym(s7_pointer sym);
#endif