prosperon/source/engine/yugine.h

14 lines
214 B
C
Raw Normal View History

#ifndef YUGINE_H
#define YUGINE_H
2024-02-23 16:05:30 -06:00
#include "script.h"
2024-03-15 11:21:36 -05:00
double apptime();
void print_stacktrace();
2024-03-18 14:27:52 -05:00
void engine_start(JSValue start_fn, JSValue proc_fn); /* fn runs after the engine starts */
void quit();
2022-12-29 04:26:21 -06:00
2024-03-15 11:21:36 -05:00
2023-03-10 13:13:48 -06:00
#endif