aboutsummaryrefslogtreecommitdiff
path: root/src/data.h
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-01-20 23:47:53 -0500
committerCara Salter <cara@devcara.com>2022-01-20 23:47:53 -0500
commitc2352ee043546b518f69c615a1ece778e942e650 (patch)
tree6efe18199f0fe2810c879c9251db2897a3244604 /src/data.h
downloadcmud-c2352ee043546b518f69c615a1ece778e942e650.tar.gz
cmud-c2352ee043546b518f69c615a1ece778e942e650.zip
initial commit
yay start of a state machine and also learning sockets
Diffstat (limited to 'src/data.h')
-rw-r--r--src/data.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/data.h b/src/data.h
new file mode 100644
index 0000000..a030d50
--- /dev/null
+++ b/src/data.h
@@ -0,0 +1,9 @@
+#ifndef DATA_H
+#define DATA_H
+
+#include "login.h"
+int try_load_file(char *player_name);
+
+int try_write_file(player_t *plr);
+
+#endif