-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 857 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Trial PHAS3R Game</title>
<style>
canvas {
display: block;
width: 43%;
margin: 0 auto;
}
</style>
</head>
</head>
<body>
<script type="text/javascript" src="phaser.min.js"></script>
<script type="text/javascript" src="Scene1.js"></script>
<script type="text/javascript" src="Scene2.js"></script>
<!-- <script type="text/javascript" src="assets/extras/Crazy_Images_Example.js"></script> -->
<script type="text/javascript" src="game.js"></script>
<script type="text/javascript" src="beam.js"></script>
<script type="text/javascript" src="explosion.js"></script>
</body>
</html>