From f585bdf24ec02109e8e961c8808901df603ec556 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sun, 19 May 2024 22:43:29 +0100 Subject: [PATCH] chore: update readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index b68d4eb..723f7eb 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,10 @@ For example: when authenticating, the following format is used: `{message_id}{username_len}{username}{password_len}{password}` All possible client and server message IDs can be found in `Networking/Enums/ClientPacketIn.cs` or `Networking/Enums/ServerPacketIn.cs` respectively. + +## Projects + +The repo is made up of the following projects: +* GServer.Server - the server to be connected to +* GServer.Client - the client that connects to the server +* GServer.Common - a class library used by both of the above projects. Contains shared code.