diff options
| author | Uneven Prankster <unevenprankster@protonmail.com> | 2023-07-12 13:22:29 -0300 |
|---|---|---|
| committer | Uneven Prankster <unevenprankster@protonmail.com> | 2023-07-12 13:22:29 -0300 |
| commit | fa2bdd711212ba6b7a94a20971e8bfa281e73296 (patch) | |
| tree | 6713b3c0379507d49558287b71dd360ce188a2f0 /src/texture_sys.h | |
lol
Diffstat (limited to 'src/texture_sys.h')
| -rw-r--r-- | src/texture_sys.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/texture_sys.h b/src/texture_sys.h new file mode 100644 index 0000000..67c9e19 --- /dev/null +++ b/src/texture_sys.h @@ -0,0 +1,13 @@ +#pragma once + +void init_tex_sys(void); + +int load_new_tex(const char* path); + +void draw_texture(int idx, int x, int y); + +void update_textures(void); + +void unload_tex(int idx); + +void unload_active_textures(void); |
