2024-12-23 21:25:24 +01:00

17 lines
585 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Bastion App</title>
</head>
<body>
<div id="game-container" style="background-color: black; width: 100%; height: 100%; overflow: hidden">
<canvas id="game-canvas"></canvas>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>