Spaces:
Running
Running
File size: 973 Bytes
bcc3a35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<!DOCTYPE html>
<html>
<head>
<title>Alpha v1.2.6</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
<script src="/js/ga4.js"></script>
<script type = text/javascript>
window.addEventListener("load", function() {
window.config = {
gameContainer: "game", assetsLocation: "resources.mc", playerUsername: null, serverIP: null, joinServerOnLaunch: false
};
main();
});
document.esc = false;
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
e.preventDefault();
document.esc = true;
}
});
document.addEventListener('keyup', function(e) {
if (e.key === 'Escape') {
e.preventDefault();
document.esc = false;
}
});
</script>
</head>
<body style="margin:0px;width:100vw;height:100vh;" id="game">
</body>
</html>
|