-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (54 loc) · 1.59 KB
/
index.html
File metadata and controls
63 lines (54 loc) · 1.59 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<title>prototype4</title>
<style>
@font-face {
font-family: 'atari';
font-style: normal;
font-weight: normal;
src: local('atari'), url('ATARCS__.TTF') format('truetype');
}
body {
background-color: black;
margin: 0;
padding: 0px;
}
canvas {
border: 1px solid #222;
cursor: crosshair;
margin: auto;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
</style>
<script src="engine/GO.js"></script>
<script src="engine/LinkedList.js"></script>
<script src="engine/Util.js"></script>
<script src="engine/Event.js"></script>
<script src="engine/Scene.js"></script>
<script src="engine/Layer.js"></script>
<script src="engine/Timer.js"></script>
<script src="engine/VisibleEntity.js"></script>
<script src="engine/VisibleEntityGroup.js"></script>
<script src="engine/Particles.js"></script>
<script src="engine/Particle.js"></script>
<script src="engine/Transition.js"></script>
<script src="game/P4.js"></script>
<script src="game/Player.js"></script>
<script src="game/Shot.js"></script>
<script src="game/Starfield.js"></script>
<script src="game/Enemy.js"></script>
<script src="game/EnemyShip.js"></script>
<script src="game/EnemyShipVariants.js"></script>
<script src="game/EnemyStar.js"></script>
<script src="game/Powerup.js"></script>
<script src="game/IntroScene.js"></script>
<script src="game/GameScene.js"></script>
<script src="game/MenuScene.js"></script>
<script src="game/EndScene.js"></script>
<script src="game/Level.js"></script>
<script src="game/LevelPattern.js"></script>
<script src="game/Game.js"></script>
<canvas id="canvas" width="600" height="500"></canvas>