-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dress Up Game</title>
</head>
<body>
<div align="center">
<canvas width="1300" height="900" id="canvas"></canvas>
<script src="src\utils\frame.js"></script>
<script src="src\UI Elements\buttonLibrary.js"></script>
<script src="src\UI Elements\button.js"></script>
<script src="src\UI Elements\colourPicker.js"></script>
<script src="src\UI Elements\windows\windowLibrary.js"></script>
<script src="src\UI Elements\windows\faceCategoryWindow.js"></script>
<script src="src\UI Elements\windows\hairCategoryWindow.js"></script>
<script src="src\UI Elements\windows\clothesCategoryWindowPage2.js"></script>
<script src="src\UI Elements\windows\clothesCategoryWindowPage1.js"></script>
<script src="src\UI Elements\windows\accessoriesCategoryWindow.js"></script>
<script src="src\UI Elements\windows\windowManager.js"></script>
<script src="src\model\modelLibrary.js"></script>
<script src="src\model\model.js"></script>
<script src="src\screens\gameScreen.js"></script>
<script src="src\screens\screenManager.js"></script>
<script src="src\game.js"></script>
<script src="src\startGame.js"></script>
</div>
</body>
</html>