TURNCRAFT/demo-worldgen.html
jing 5a39e3a947 TURNCRAFT: contracts, docs, and all five lane deliverables (pre-integration)
Lanes A (engine), B (player), C (worldgen), D (machines/quest),
E (audio/fx/ui) as landed, each with HANDOFF.md + update docs.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 20:50:56 +10:00

18 lines
525 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TURNCRAFT — Lane C · World Builder demo</title>
<style>
html, body { margin: 0; height: 100%; overflow: hidden; background: #0d0d10; }
#app { position: fixed; inset: 0; }
canvas { display: block; }
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/demo/worldgenDemo.ts"></script>
</body>
</html>