about summary refs log tree commit diff
path: root/src/game/client/cl_skin.h
blob: bafc76b953336048cfc608274976ad3734873c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include "../vmath.h"

// do this better and nicer
typedef struct 
{
	int org_texture;
	int color_texture;
	char name[31];
	char term[1];
} skin;

vec4 skin_get_color(int v);
void skin_init();
int skin_num();
const skin *skin_get(int index);
int skin_find(const char *name);


vec3 hsl_to_rgb(vec3 in);