summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorjohannes <johannes.herman@gmail.com>2024-02-09 20:09:42 +0100
committerjohannes <johannes.herman@gmail.com>2024-02-09 20:09:42 +0100
commit5fa16e90770a73bba17efa23bf8b24a0d48e3a81 (patch)
tree519c319762ba955e0a6788696b33dcbcbecd04a2 /inc
parent26b74cfde46e3ed0be4759946ab5ab43cc5d669b (diff)
added change name and skin functions
Diffstat (limited to 'inc')
-rw-r--r--inc/commands.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/commands.h b/inc/commands.h
new file mode 100644
index 0000000..20f35e1
--- /dev/null
+++ b/inc/commands.h
@@ -0,0 +1,12 @@
+#ifndef COMMANDS_H
+#define COMMANDS_H
+
+#include "demo.h"
+
+int setnamebyid(int id, char *newname, demo *demo);
+int setnamebyname(char *oldname, char *newname, demo *demo);
+
+int setskinbyname(char *name, char *skin, demo *demo);
+
+#endif // COMMANDS_H
+