From 1e8ef4abf0b026728fd296942e669c804496691c Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Fri, 26 Dec 2025 00:58:49 +0000 Subject: [PATCH] docs: packages,lobby,arcade (2 files) --- packages/arcade_lobby/static_content/cli/README.md | 11 +++++++++++ packages/arcade_lobby/static_content/examples.json | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 packages/arcade_lobby/static_content/cli/README.md create mode 100644 packages/arcade_lobby/static_content/examples.json diff --git a/packages/arcade_lobby/static_content/cli/README.md b/packages/arcade_lobby/static_content/cli/README.md new file mode 100644 index 000000000..53449ee4e --- /dev/null +++ b/packages/arcade_lobby/static_content/cli/README.md @@ -0,0 +1,11 @@ +# Arcade Lobby CLI + +A tiny CLI sample that prints the current lobby status. + +## Build + +g++ -std=c++17 main.cpp -o arcade-lobby-cli + +## Run + +./arcade-lobby-cli diff --git a/packages/arcade_lobby/static_content/examples.json b/packages/arcade_lobby/static_content/examples.json new file mode 100644 index 000000000..2a1e1b59a --- /dev/null +++ b/packages/arcade_lobby/static_content/examples.json @@ -0,0 +1,13 @@ +{ + "examples": { + "queues": [ + { "game": "Neon Rush", "players": 120, "waitSeconds": 45 }, + { "game": "Gridline", "players": 48, "waitSeconds": 120 }, + { "game": "Star Kart", "players": 64, "waitSeconds": 30 } + ], + "tournaments": [ + { "name": "Midnight Sprint", "status": "live", "players": 64 }, + { "name": "Weekend Circuit", "status": "registering", "players": 32 } + ] + } +}