20 lines
671 B
HTML
20 lines
671 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>Orbit — dev: comms × mining (the type-aware busy contract)</title>
|
||
<!-- This page lives in /dev, but the game's relative asset paths are
|
||
rooted at the project root — resolve them against it. -->
|
||
<base href="../" />
|
||
<style>
|
||
html, body { margin: 0; height: 100%; background: #04060d; overflow: hidden; }
|
||
#game { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
|
||
</style>
|
||
<script src="lib/phaser.min.js"></script>
|
||
</head>
|
||
<body>
|
||
<div id="game"></div>
|
||
<script type="module" src="dev/comms-mine.mjs"></script>
|
||
</body>
|
||
</html>
|