-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="Description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="icon" type="image/png" href="img/favicon.png" />
<style>
#wrapper {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
}
</style>
</head>
<body style="background-color: black">
<div id="wrapper">
<canvas id="canvas" width="960" height="680">
</canvas>
</div>
<script src="js/backgroundColors.js"></script>
<script src="js/affichage/AffichageText.js"> </script>
<script src="js/affichage/MultiLineText.js"></script>
<script src="js/affichage/MessageBulle.js"></script>
<script src="js/affichage/Drawable.js"> </script>
<script src="js/affichage/Animatable.js"> </script>
<script src="js/affichage/ExitIndicator.js"></script>
<script src="js/affichage/MazeMask.js"></script>
<script src="js/perso_item/Hero.js"> </script>
<script src="js/perso_item/Monster.js"></script>
<script src="js/Constante.js"> </script>
<script src="js/Tileset.js"> </script>
<script src="js/mazes.js"> </script>
<script src="js/case.js"> </script>
<script src="js/Labyrinthe.js"> </script>
<script src="js/IntroMeca.js"> </script>
</body>
</html>