2022-12-22 03:50:40 -06:00
|
|
|
#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();
|
2023-04-24 17:22:18 -05:00
|
|
|
void print_stacktrace();
|
2024-05-16 14:50:18 -05:00
|
|
|
void engine_start(JSValue start_fn, JSValue proc_fn, float x, float y); /* fn runs after the engine starts */
|
2022-12-22 03:50:40 -06:00
|
|
|
|
2024-03-11 15:11:39 -05:00
|
|
|
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
|