-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 904 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connect Blox</title>
<style>
body {
padding: 0;
margin: 0;
background-color: #28262c;
}
canvas {
display: block; /* prevents scrollbar */
}
</style>
<script src="p5/p5.js"></script>
<!-- <script src="../addons/p5.sound.js"></script> -->
<script src="lib/p5.clickable.js"></script>
<script src="UI/Modal.js"></script>
<script src="boardLevels.js"></script>
<!-- <script src="UI/popup.js"></script> --> <!-- Eventually make a modal, with possible buttons. include here -->
<script src="Square.js"></script>
<script src="events.js"></script>
<script src="editor.js"></script>
<script src="board.js" ></script>
<script src="sketch.js"></script>
</head>
<body>
<main>
</main>
</body>
</html>