-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (30 loc) · 979 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!-- Programmé par ODYTEK 2016 -->
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Grimpeur</title>
<!-- Chargement des scripts commun -->
<!-- NE PAS MODIFIER -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src = "phaser.js"></script>
<!-- Chargement des états du jeu -->
<!-- Tu peux modifier les noms des fichiers pour pointer vers tes états de jeu -->
<script src = "etats/chargement.js"></script>
<script src = "etats/menu.js"></script>
<script src = "etats/jeu.js"></script>
<script src = "etats/GG.js"></script>
<script src = "etats/records.js"></script>
<!-- NE PAS MODIFIER -->
<script src = "boot.js"></script>
<style type="text/css">
body {
overflow: hidden; /* cache les barres de défilment */
margin: 0;
cursor: none;
}
</style>
</head>
<body>
</body>
</html>