aboutsummaryrefslogtreecommitdiff
path: root/src/texture_sys.h
blob: 67c9e19dc0c9d2497c02fc84a4ebcfd71bc35d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);