diff options
Diffstat (limited to 'sources/main.c')
-rw-r--r-- | sources/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
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 <math.h> #include <stdio.h> @@ -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); |