← Back to ratslair.com
aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorr4tss <[email protected]>2021-03-10 11:05:29 +0100
committerr4tss <[email protected]>2021-03-10 11:05:29 +0100
commitcd2b5d140c692481862f25f7c2161dc686dbad1b (patch)
tree8a157d2031ed62a4211aaa32a9301c89b06873a0 /client.c
parentfe4ad02c13e2bbdc2eb1a6afa309a7d8f2ec3c97 (diff)
Server is functional now and ready to be implemented into the game
Diffstat (limited to 'client.c')
-rw-r--r--client.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/client.c b/client.c
new file mode 100644
index 0000000..c3df1eb
--- /dev/null
+++ b/client.c
@@ -0,0 +1,7 @@
+#include "server.c"
+
+int main()
+{
+ char ip[30] = "127.0.0.1";
+ joinGame(ip);
+}