Files
cell/source/script.h
John Alanbrook 9410af3a69
Some checks failed
Build and Deploy / build-linux (push) Successful in 1m11s
Build and Deploy / build-windows (CLANG64) (push) Failing after 6m17s
Build and Deploy / package-dist (push) Has been skipped
Build and Deploy / deploy-itch (push) Has been skipped
Build and Deploy / deploy-gitea (push) Has been skipped
messages
2025-03-19 12:40:31 -05:00

15 lines
334 B
C

#ifndef SCRIPT_H
#define SCRIPT_H
#include "quickjs.h"
#include <SDL3/SDL.h>
#include "prosperon.h"
void script_startup(prosperon_rt *rt);
void script_evalf(JSContext *js, const char *format, ...);
JSValue script_eval(JSContext *js, const char *file, const char *script);
void uncaught_exception(JSContext *js, JSValue v);
#endif