Files
playableintelligence__game-…/examples/asteroid-dodger/index.html
T
rshtirmer 91981b44d4 feat: add crowd-dash example, rename example-game to asteroid-dodger
- Add crowd-dash: 3D neon city endless runner (Three.js) with particles,
  camera juice, synthwave audio, and death slow-motion
- Rename examples/example-game → examples/asteroid-dodger
- Enable agent teams in settings.json

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 16:35:01 -05:00

18 lines
541 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Asteroid Dodger</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; background: #000; }
#game-container { width: 100%; height: 100%; }
</style>
</head>
<body>
<div id="game-container"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>