about summary refs log tree commit diff
path: root/src/game/client/cl_skin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/cl_skin.h')
-rw-r--r--src/game/client/cl_skin.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/game/client/cl_skin.h b/src/game/client/cl_skin.h
new file mode 100644
index 00000000..84dbc5f2
--- /dev/null
+++ b/src/game/client/cl_skin.h
@@ -0,0 +1,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);