A multiplayer game for 4 players where players take turns being "sick" (the seeker) while others hide. Points are awarded for successful hiding and seeking.
├── frontend/
│ ├── index.html # Main game interface
│ ├── index.tsx # React game logic
│ └── style.css # Game styling
├── backend/
│ ├── index.ts # API server
│ └── database/
│ ├── migrations.ts # Database setup
│ └── queries.ts # Game data queries
└── shared/
└── types.ts # Shared game types
The game runs as an HTTP val. Players can join, play rounds, and track their progress through the web interface.