blob: 91de0e3909f4791a0bc86a9a36cb5529796bfce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="freya">
<title>minecraft</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: black;
}
canvas {
width: 100%;
height: 100%;
}
</style>
<script type="module" src="js/wgpu/wgpu.js"></script>
</head>
<body>
<script type="module" src="js/minecraft.js"></script>
</body>
</html>
|