-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KawaiiPixel</title>
<link rel="stylesheet" type="text/css" href="src/styles/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--p5.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.1/p5.min.js" integrity="sha512-jLPBEs8Tcpbj4AlLISWG0l7MbuIqp1cFBilrsy0BhvNUa0BLB4wVQeoL+93OYOdENFPKLOgrzb1Nytn+5N5y7g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.1/addons/p5.sound.min.js" integrity="sha512-WzkwpdWEMAY/W8WvP9KS2/VI6zkgejR4/KTxTl4qHx0utqeyVE0JY+S1DlMuxDChC7x0oXtk/ESji6a0lP/Tdg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!--My scripts-->
<script src="src/scripts/main.js"></script>
<script src="src/scripts/Camera.js"></script>
<script src="src/scripts/Grid.js"></script>
<script src="src/scripts/Shape.js"></script>
<script src="src/scripts/Shapes.js"></script>
<script src="src/scripts/GameManager.js"></script>
<script src="src/scripts/PixelArtManager.js"></script>
<script src="src/scripts/Dots.js"></script>
<script src="src/scripts/NPC.js"></script>
<script src="src/scripts/DialogueSystem.js"></script>
</head>
<body>
</body>
</html>