diff --git a/bindings.json b/bindings.json index 6fa0f43..c2edfdc 100644 --- a/bindings.json +++ b/bindings.json @@ -7,5 +7,9 @@ { "name": "BeginDrawing" }, { "name": "EndDrawing" } ] + }, + { + "name": "raylib_texture", + "functions": [] } ] \ No newline at end of file diff --git a/src/quickjs.c b/src/quickjs.c index 8ab1455..95fb7b5 100644 --- a/src/quickjs.c +++ b/src/quickjs.c @@ -5,6 +5,7 @@ #include "common.h" #include "bindings/js_raylib_core.h" +#include "bindings/_js_raylib_texture.h" static JSContext *JS_NewCustomContext(JSRuntime *rt); static int eval_buf(JSContext *ctx, const void *buf, int buf_len,