The Snivy Video Game Is Complete

This commit is contained in:
2025-12-29 05:10:56 -05:00
parent d0f9669b8b
commit 62b988a678
705 changed files with 210576 additions and 162 deletions

17
build-web/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>snivy</title>
<style>
html, body { height: 100%; margin: 0; }
body { display: flex; align-items: center; justify-content: center; background: #000; }
canvas { width: 1080px; height: 720px; cursor: none; }
</style>
</head>
<body>
<canvas id="canvas" width="1080" height="720" tabindex="-1"></canvas>
<script src="index.js"></script>
</body>
</html>