ddnet/src/game/client/cl_skin.h

15 lines
231 B
C
Raw Normal View History

// 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);