24 lines
678 B
HTML
24 lines
678 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Web Components Test</title>
|
|
|
|
<link rel="stylesheet" href="./src/styles.css">
|
|
<script type="module" src="./src/components.js"></script>
|
|
<body>
|
|
<main>
|
|
<mc-diorama>
|
|
<mc-frame>
|
|
<mc-world>
|
|
p -1 0 0 redstone_wire east=side west=none north=none south=none power=0
|
|
p 0 0 0 repeater facing=east delay=1 locked=false powered=false
|
|
p 2 0 0 oak_trapdoor facing=east half=bottom open=true
|
|
p 0 -1 0 lodestone
|
|
p 0 -2 0 piston facing=north extended=false
|
|
</mc-world>
|
|
</mc-frame>
|
|
</mc-diorama>
|
|
</main>
|
|
</body>
|
|
</html>
|