WiiDuktape/source/rgba.h
Fries 123d151c57 add pipes to the game.
they can move! no collision yet.
the numbers still need a bit of tweaking though.
2024-06-24 17:37:38 -07:00

7 lines
196 B
C

#ifndef RGBA_H
#define RGBA_H
#include <duktape.h>
unsigned int get_color(duk_context * ctx, duk_idx_t index);
duk_ret_t rgba(duk_context * ctx);
duk_ret_t compare_rgba(duk_context * ctx);
#endif