2023-07-10 08:36:57 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-07-19 14:11:45 -07:00
|
|
|
<title>Shadow Client Classic</title>
|
2023-07-10 08:36:57 -07:00
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
|
|
<script type="text/javascript" charset="utf-8" src="app.js"></script>
|
|
|
|
<script type = text/javascript>
|
|
|
|
if(document.location.href.startsWith("file:")) {
|
|
|
|
alert("Offline Download is not yet supported, please upload all the game files to a HTTP(s) server");
|
|
|
|
} else {
|
|
|
|
window.addEventListener("load", function() {
|
2023-07-19 14:11:45 -07:00
|
|
|
window.classicConfig = ["game","resources.mc"];
|
2023-07-10 08:36:57 -07:00
|
|
|
main();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
2023-07-19 14:11:45 -07:00
|
|
|
<body style="margin:0px;width:100vw;height:100vh;" id="game">
|
2023-07-10 08:36:57 -07:00
|
|
|
</body>
|
|
|
|
</html>
|