From 9999ea36e68e910af8dbf1f8b0c0fc4bf2c3b6a5 Mon Sep 17 00:00:00 2001 From: gilzoide Date: Sun, 5 May 2024 11:04:48 -0300 Subject: Add script for automatically generating enums.c from raylib_api.json --- sources/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sources/main.c') diff --git a/sources/main.c b/sources/main.c index 7196bc4..4f899ce 100644 --- a/sources/main.c +++ b/sources/main.c @@ -9,6 +9,7 @@ #include "rl/text.h" #include "rl/texture.h" #include "rl/core.h" +#include "rl/enums.h" #include "rl/shapes.h" #include "repl/repl.h" @@ -48,6 +49,7 @@ int main(int argc, char* argv[]) { s7 = s7_init(); rl_register_types(s7); + rl_register_enums(s7); rl_text_define_methods(s7); rl_texture_define_methods(s7); rl_core_define_methods(s7); -- cgit v1.2.3