Base game template

This commit is contained in:
Jeremy Kaplan 2026-08-09 13:08:28 -04:00
commit f83c7c0781
7 changed files with 6158 additions and 0 deletions

23
build/index.html Normal file
View file

@ -0,0 +1,23 @@
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-color: #aaaaaa;
}
canvas {
background-color: black;
}
</style>
<title>Pong</title>
</head>
<script type="module">
import init from './breakout.js';
init();
</script>
</html>