2024-05-16 18:41:21 -05:00
|
|
|
<!DOCTYPE html>
|
2024-05-16 18:42:10 -05:00
|
|
|
<html>
|
2024-05-16 18:41:21 -05:00
|
|
|
<head>
|
2024-05-16 18:42:10 -05:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>EaglerXMicrosoft</title>
|
|
|
|
<script type="text/javascript" src="classes.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
"use strict";
|
|
|
|
window.addEventListener("load", () => {
|
|
|
|
if(document.location.href.startsWith("file:")) {
|
|
|
|
alert("HTTP please, do not open this file locally, run a local HTTP server and load it via HTTP");
|
|
|
|
}else {
|
|
|
|
main();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2024-05-16 18:41:21 -05:00
|
|
|
</head>
|
2024-05-16 18:42:10 -05:00
|
|
|
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden;" id="game_frame">
|
2024-05-16 18:41:21 -05:00
|
|
|
</body>
|
|
|
|
</html>
|