docs: packages,lobby,arcade (2 files)

This commit is contained in:
2025-12-26 00:58:49 +00:00
parent 6a9b411fea
commit 1e8ef4abf0
2 changed files with 24 additions and 0 deletions

View File

@@ -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

View File

@@ -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 }
]
}
}