ObjToSchematic/index.html
2022-03-21 21:32:45 +00:00

29 lines
660 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>ObjToSchematic Convert 3D models into Minecraft builds</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<!-- The UI is dynamically built at runtime, see ./src/ui/layout.ts for details -->
<div class="column-properties" id="properties">
</div>
<div class="column-canvas">
<canvas id="canvas"></canvas>
<!-- The toolbar is dynamically built at runtime, see ./src/ui/layout.ts for details -->
<div class="toolbar" id="toolbar">
</div>
</div>
</div>
</body>
<script>
require("./dist/src/client.js");
</script>
</html>