diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include <raylib.h> #include "texture_sys.h" #include "shader_sys.h" +#include "script_sys.h" int main() { @@ -10,6 +11,7 @@ int main() init_tex_sys(); init_shader_sys(); + init_script_sys(); int femme = load_new_tex("assets/femme.png"); int grayscale = load_new_shader("assets/gs_full.glsl"); @@ -25,6 +27,7 @@ int main() EndDrawing(); } + deinit_script_sys(); unload_active_textures(); unload_active_shaders(); |
