Get rendering working

This commit is contained in:
Michael Mikovsky
2025-10-22 15:23:29 -06:00
parent 43a8dab882
commit b8ca903bba
11 changed files with 841 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<html>
<head>
<link data-trunk rel="rust" />
<style>
* {
padding: 0;
margin: 0;
background-color: black;
}
</style>
</head>
<body>
<canvas
id="canvas"
style="position: fixed; width: 100%; height: 100%"
></canvas>
<script data-trunk src="js/index.js"></script>
</body>
</html>