-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 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
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Novo teste</title>
</head>
<body>
<canvas id="canvas" width="800" height="600"></canvas>
<script src="bower_components/lodash/lodash.js"></script>
<!-- <script src="bower_components/pixi/pixi.js"></script> -->
<!-- Loads Engine components Here -->
<script src="src/config.js"></script>
<script src="src/config/animations.js"></script>
<script src="src/config/image_files.js"></script>
<script src="src/config/maps.js"></script>
<!-- Loads Engine components Here -->
<script src="src/engine/preload_files.js"></script>
<script src="src/engine/prerender_maps.js"></script>
<!-- Loads Components Here -->
<script src="src/components/sprite.js"></script>
<script src="src/components/frame.js"></script>
<script src="src/components/position.js"></script>
<script src="src/components/velocity.js"></script>
<script src="src/components/acceleration.js"></script>
<script src="src/components/frame_animation.js"></script>
<!-- Loads Entities Here -->
<!-- Loads Systems Here -->
<script src="src/systems/draw.js"></script>
<script src="src/systems/update_position.js"></script>
<script src="src/systems/update_frame_animation.js"></script>
<!-- Bootstrap Application -->
<script src="main.js"></script>
</body>
</html>