18 lines
525 B
HTML
18 lines
525 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<base href="../" />
|
|
<title>Orbit — Route shot (dev)</title>
|
|
<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/route-shot.mjs"></script>
|
|
</body>
|
|
</html>
|