WiiDuktape/source/wii_duk.h
Fries fc7ca18fd7 get the bird to jump!
i added deltatime so the bird should hopefully have the same speed if
the framerate drops or if you play in PAL 50hz mode.
2024-06-21 22:57:08 -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