From ebeae76cb00fd0d000cbfda2314722ba85f6afd6 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Mon, 8 Sep 2025 13:48:51 -0500 Subject: [PATCH] add readme --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..bec5a5b --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Game + +This is a little test bench for a multiplayer game. Not sure if it'll scale to MMO, but it's a great +practice run for learning how to build one. Uses C++ with Raylib for the client, and Go for the server. + +## Client + +A dead-simple client using C++ with Raylib. The goal is to compile it for Windows, Linux, and macOS. + +## Server + +Bare-bones UDP server using Go. Since speed is a primary concern, we'll likely leverage gnet at some point.