18 lines
395 B
HTML
18 lines
395 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<body style="margin: 0px;">
|
|
<script type="module">
|
|
import './restart-audio-context.js'
|
|
import init from './bevy_scripting_tests.js'
|
|
|
|
init().catch((error) => {
|
|
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
|
|
throw error;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|