forte_engine 0.2.3

A core for a basic render/game engine designed to have little overhead.
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">
        <title>Learn WGPU</title>
        <style>
            canvas {
                background-color: black;
            }
        </style>
    </head>

    <body>
    <div id="forte" style="width: 50%; height: 100%;" ></div>
    <script type="module">
        import init from "./pkg/gltf.js";
        init().then(() => {
            console.log("WASM Loaded");
        });
    </script>
    </body>

</html>