-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude-scripts.php
More file actions
40 lines (40 loc) · 1.31 KB
/
Copy pathinclude-scripts.php
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
<?php
echo '
<script>';
echo file_get_contents('js/controlsmenu.js');
echo '</script><script>';
echo file_get_contents('js/utilities.js');
echo '</script><script>';
echo file_get_contents('js/Data/collisions.js');
echo '</script><script>';
echo file_get_contents('js/Data/platformcolls.js');
echo '</script><script>';
echo file_get_contents('js/Classes/collisionBlock.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Sprite.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Gem.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Obstacle.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Player.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Enemy.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Barrier.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Bullet.js');
echo '</script><script>';
echo file_get_contents('js/Classes/Boss.js');
echo '</script><script>';
echo file_get_contents('js/EventListeners.js');
echo '</script><script>';
echo file_get_contents('js/Data/levels.js');
echo '</script><script>';
echo file_get_contents('js/full-screen.js');
echo '</script><script>';
echo file_get_contents('index.js');
echo '</script><script>';
echo file_get_contents('js/Server/checkUserProgress.js');
echo '</script>';
?>