This commit is contained in:
yoyuzh
2026-02-27 14:29:05 +08:00
commit d669738967
41 changed files with 10270 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Race Game</title>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #000;
}
</style>
</head>
<body>
<script src="./release.js"></script>
<script src="./utilities.js"></script>
<script src="./audio.js"></script>
<script src="./draw.js"></script>
<script src="./game.js"></script>
<script src="./generative.js"></script>
<script src="./hud.js"></script>
<script src="./input.js"></script>
<script src="./levels.js"></script>
<script src="./scene.js"></script>
<script src="./sounds.js"></script>
<script src="./track.js"></script>
<script src="./trackGen.js"></script>
<script src="./vehicle.js"></script>
<script src="./webgl.js"></script>
<script src="./main.js"></script>
</body>
</html>