game-engine/index.html

24 lines
580 B
HTML
Raw Normal View History

2024-07-07 22:50:34 -05:00
<!DOCTYPE html>
2024-07-14 02:24:26 -05:00
<html lang="en">
2024-07-14 02:24:26 -05:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Baena</title>
<link rel="stylesheet" href="index.css">
</head>
2024-07-07 22:50:34 -05:00
2024-07-14 02:24:26 -05:00
<body>
<div id="resources">
<img id="overworld" src="resources/overworld.png">
</div>
<div id="container">
<button id="debug">Debug</button>
<button id="level1">Level 1</button>
<button id="level2">Level 2</button>
<canvas id="game"></canvas>
</div>
<script type="module" src="index.js"></script>
</body>
2024-07-07 22:50:34 -05:00
2024-07-14 02:24:26 -05:00
</html>