forked from algorithm0r/Empty--GameEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (17 loc) · 667 Bytes
/
index.html
File metadata and controls
18 lines (17 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Game Project Title Goes Here</title>
<script type="text/javascript" src="./assetmanager.js"></script>
<script type="text/javascript" src="./timer.js"></script>
<script type="text/javascript" src="./gameengine.js"></script>
<script type="text/javascript" src="./util.js"></script>
<script type="text/javascript" src="./Kamehameha.js"></script>
<script type="text/javascript" src="./main.js"></script>
</head>
<body>
<canvas id="gameWorld" width="1024" height="768" style="background: white; border: 1px solid black" tabindex="0" autofocus></canvas>
</body>
</html>