rezcraft 0.2.0

Minecraft like game written in rust using wgpu, supporting both native and wasm
Documentation
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <link rel="icon" href="./resource/icon.png" />

    <title>Rezcraft</title>

    <style>
      body {
        margin: 0px;
        padding: 0px;
        overflow: hidden;
      }

      canvas {
        background-color: black;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    </style>
  </head>

  <body id="rezcraft">
    <script type="module">
      import init, { run } from "./pkg/rezcraft.js";

      init().then(() => {
        run();
      });
    </script>
  </body>
</html>