blob: 84dbc5f24d46146f48494e824946775408c63ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// do this better and nicer
typedef struct
{
int org_texture;
int color_texture;
char name[31];
const char term[1];
} skin;
void skin_init();
int skin_num();
const skin *skin_get(int index);
int skin_find(const char *name);
|