A web-based game launcher.
Web-Arcade/
├── index.html # Main menu (game selector)
├── css/
│ └── styles.css # Global theme(s)
├── js/
│ └── main.js # Menu handler
└── games/ # Self-contained game folders
├── snake/
│ ├── index.html
│ └── meta.json
└── pong/
├── index.html
└── meta.json
- Create a folder under
games/
(use the game’s ID as the folder name). - Drop in:
index.html
– game entry pointgame.js
- game logic etc...meta.json
– menu metadatathumb.png
– 200 × 150 cover (optional)
- Add a matching entry in
js/main.js
’sgames
array. - Serve locally (
python -m http.server
) and confirm the thumbnail and launch work. Press ESC in‑game to return to the lobby. - If your new game addition works and is correctly integrated you may open a pull request for the main branch.