From a7cc19f9e254d0ee391b2b65ef6da6e471da803c Mon Sep 17 00:00:00 2001 From: Henrique Alves Date: Thu, 25 Apr 2024 23:51:58 +0300 Subject: Adding more API --- sources/main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sources/main.c') diff --git a/sources/main.c b/sources/main.c index 3601fe3..5086080 100644 --- a/sources/main.c +++ b/sources/main.c @@ -4,8 +4,10 @@ #endif #include "raylib.h" -#include "text.h" #include "s7.h" +#include "text.h" +#include "texture.h" +#include "core.h" #include #include @@ -41,6 +43,8 @@ int main(int argc, char* argv[]) { s7 = s7_init(); rl_text_define_methods(s7); + rl_texture_define_methods(s7); + rl_core_define_methods(s7); const int screen_width = 800; const int screen_height = 600; @@ -48,7 +52,6 @@ int main(int argc, char* argv[]) { InitWindow(screen_width, screen_height, "SLGJ - 2024"); SetTargetFPS(60); - printf("foi"); char filename[] = SCRIPTS_PATH"main.scm"; s7_load(s7, filename); -- cgit v1.2.3