blob: d73f43d3efbc3afa3f19e98ccb9ddc847c4d91f9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
// loads images from the map to textures
int img_init();
// returns the number of images in the map
int img_num();
// fetches the texture id for the image
int img_get(int index);
|