prosperon/source/engine/yugine.h
2024-05-16 14:50:18 -05:00

14 lines
232 B
C

#ifndef YUGINE_H
#define YUGINE_H
#include "script.h"
double apptime();
void print_stacktrace();
void engine_start(JSValue start_fn, JSValue proc_fn, float x, float y); /* fn runs after the engine starts */
void quit();
#endif