1
0
Fork 0
spacetac/out/index.html

42 lines
915 B
HTML
Raw Normal View History

2014-12-28 00:00:00 +00:00
<!DOCTYPE HTML>
<html lang="en">
2014-12-28 00:00:00 +00:00
<head>
<meta charset="utf-8" />
2014-12-28 00:00:00 +00:00
<title>SpaceTac</title>
<style>
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
background: #000000;
padding: 0;
margin: 0;
}
.game {
width: 100%;
height: 100vh;
}
</style>
2014-12-28 00:00:00 +00:00
</head>
2014-12-28 00:00:00 +00:00
<body>
<div id="-space-tac" class="game"></div>
2014-12-28 00:00:00 +00:00
<script src="vendor/parse/parse.min.js"></script>
2017-03-13 21:17:05 +00:00
<script src="vendor/phaser/build/phaser.min.js"></script>
<script src="build.js"></script>
2014-12-28 00:00:00 +00:00
<script>
window.oncontextmenu = function (e) { e.preventDefault(); };
window.onload = function () {
window.ui = new TS.SpaceTac.MainUI();
window.connection = new TS.SpaceTac.Multi.Connection(window.ui);
};
</script>
2014-12-28 00:00:00 +00:00
</body>
</html>