peytonplayz585-a1.2.6/web/index.html

34 lines
900 B
HTML
Raw Permalink Normal View History

2024-02-09 07:07:55 -08:00
<!DOCTYPE html>
<html>
<head>
<title>Alpha v1.2.6</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
2024-02-10 10:54:22 -08:00
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
2024-02-09 07:07:55 -08:00
<script type = text/javascript>
2024-03-27 12:15:53 -07:00
window.addEventListener("load", function() {
window.config = {
gameContainer: "game", assetsLocation: "resources.mc", playerUsername: null, serverIP: null, joinServerOnLaunch: false
};
main();
});
2024-02-24 22:23:13 -08:00
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>
2024-02-09 07:07:55 -08:00
</head>
<body style="margin:0px;width:100vw;height:100vh;" id="game">
</body>
</html>