mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 12:08:20 +00:00
20 lines
329 B
C++
20 lines
329 B
C++
/* 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);
|
|
|
|
|
|
class mapres_image
|
|
{
|
|
public:
|
|
int width;
|
|
int height;
|
|
int image_data;
|
|
};
|