WiiDuktape/source/duktape/include_private/wii_duk.h
Fries 63bb2916ca move duktape code into a static library.
this means i can try out making a launcher that launches into other
javascript engines like quickjs.
2024-06-25 14:08:04 -07:00

6 lines
210 B
C

#ifndef WII_DUK_H
#define WII_DUK_H
#include <duktape.h>
#include <grrlib.h>
void define_wii_object(duk_context * ctx, struct GRRLIB_Font * grrlib_font, bool * global_running, float * global_deltatime);
#endif