-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadGame.js
16 lines (15 loc) · 883 Bytes
/
loadGame.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*********************************
SquareAttack - loadGame.js
Copyright: Marcis Berzins (berzins.marcis@gmail.com), 2013
This program is licensed under the terms of the GNU General Public License: http://www.gnu.org/licenses/gpl-3.0.txt
*********************************/
document.write('<script src="managers/input.js"></script>');
document.write('<script src="managers/audio.js"></script>');
document.write('<script src="managers/image.js"></script>');
document.write('<script src="classes/misc.js"></script>');
document.write('<script src="classes/screen.js"></script>');
document.write('<script src="classes/game.js"></script>');
document.write('<script src="screens/loader.js"></script>');
document.write('<script src="screens/menu.js"></script>');
document.write('<script src="screens/play.js"></script>');
document.write('<script src="main.js"></script>');