-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgame.html
31 lines (25 loc) · 1.03 KB
/
game.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GoCorona</title>
</head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.22.0/phaser.min.js"></script>
<script src="onboardingscene.js"></script>
<script src="menuscene.js"></script>
<script src="gameoverscene.js"></script>
<script src="scene.js"></script>
<script src="index.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161601283-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-161601283-1');
</script>
<body style="margin: 0; border: 0; display: flex; justify-content: center;align-items: center; height: 100%; background-color: #697e96">
</body>
</html>