Intialize and cleanup repo

This commit is contained in:
2020-04-30 19:16:46 -04:00
commit 49e859eb1a
89 changed files with 2233 additions and 0 deletions

10
server/build.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
mkdir -p builds
# Remove old version
if [ -f builds/server.out ]; then
rm builds/server.out
fi
g++ main.cpp -o builds/server.out -lenet -lpthread