-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 859 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>first casseBriques SC</title>
<link rel="stylesheet" href="style/casseBrique.css">
</head>
<body>
<h1>Mon premier casse briques avec SugarCubes</h1>
<canvas id ="zoneDeJeu" height="400" width="800"></canvas>
<!-- <script src="http://jeanferdysusini.free.fr/SugarCubes.js"></script> -->
<script src="script/SugarCubes.js"></script>
<script src="script/commun.js"></script>
<script src="script/cubes/balle.js"></script>
<script src="script/cubes/raquette.js"></script>
<script src="script/cubes/brique.js"></script>
<script src="script/cubes/maitreDuJeu.js"></script>
<script src="script/cubes/zoneDeJeu.js"></script>
<script src="script/cubes/murs.js"></script>
<script src="script/collision.js"></script>
<script src="script/moteur.js"></script>
</body>
</html>