#ifndef LEVEL_SCRIPT_H_ #define LEVEL_SCRIPT_H_ #include "ebisp/expr.h" typedef struct Gc Gc; struct Scope; typedef struct Level Level; struct EvalResult rect_apply_force(void *param, Gc *gc, struct Scope *scope, struct Expr args); struct EvalResult hide_goal(void *param, Gc *gc, struct Scope *scope, struct Expr args); struct EvalResult show_goal(void *param, Gc *gc, struct Scope *scope, struct Expr args); void load_level_library(Gc *gc, struct Scope *scope, Level *level); #endif // LEVEL_SCRIPT_H_