<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mantra.js Gallery Page - maze world</title>
<script src="https://yantra.gg/mantra.js"></script>
<script src="https://yantra.gg/worlds.mantra.js"></script>
</head>
<body>
<script>
async function start () {
let game = new MANTRA.Game({
width: 400,
height: 300,
graphics: ['css'],
plugins: ['Editor']
});
await game.start();
await game.loadScripts('/worlds.mantra.js');
game.use('Editor');
game.use(new WORLDS.worlds['Maze']());
}</script>
</body>
</html>