Additional testing, entity deletion, and player disconnection

This commit is contained in:
2020-05-01 02:24:34 -04:00
parent b94b469c39
commit 9a6ba77e72
7 changed files with 235 additions and 21 deletions

View File

@@ -7,4 +7,11 @@ if [ -f builds/server.out ]; then
rm builds/server.out
fi
g++ main.cpp -o builds/server.out -lenet -lpthread
g++ main.cpp -o builds/server.out -lenet -lpthread
if [ $? = 0 ]
then
echo "Build successfully!"
else
exit -1
fi