UNPKG

create-kaplay-game

Version:

CLI to scaffold an Electron+Vite+Kaplay game project.

18 lines (17 loc) 386 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Kaplay Game</title> </head> <body> <canvas id="game-canvas" width="800" height="600" style="background: #eee" ></canvas> <script type="module" src="./main.js"></script> </body> </html>