-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
49 lines (48 loc) · 1.72 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/images/favicon.png" rel="icon">
<title>Mario</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-48YJ1RPKP3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-48YJ1RPKP3');
</script>
<style>
* {
margin: 0;
box-sizing: border-box;
}
body {
overflow: hidden;
}
</style>
</head>
<body>
<canvas class="board"></canvas>
<script src="js/preload.js" defer></script>
<script src="assets/map/coordinate.js" defer></script>
<script src="js/mario.js" defer> </script>
<script src="entity/goomba.js" defer></script>
<script src="entity/koopa.js" defer></script>
<script src="entity/bricks.js" defer></script>
<script src="entity/particles.js" defer></script>
<script src="entity/mystery.js" defer></script>
<script src="entity/coin.js" defer></script>
<script src="entity/mushroom.js" defer></script>
<script src="js/bgblueprint.js" defer></script>
<script src="js/levelBuilder.js" defer></script>
<script src="js/input.js" defer></script>
<script src="js/audio.js" defer></script>
<script src="js/animation.js" defer></script>
<script src="js/movement.js" defer></script>
<script src="js/physics.js" defer></script>
<script src="js/game.js" defer></script>
</body>
</html>