Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <!DOCTYPE html> | |
| <html lang="en-us"> | |
| <head> | |
| <title>Plants vs Campers</title> | |
| <link href="css/styles.css" type="text/css" rel="stylesheet"/> | |
| <!-- Fonts --> | |
| <link href='css/fonts.css' rel='stylesheet' type='text/css'> | |
| <!-- Load any external libraries --> | |
| <script src="js/phaser/phaser.min.js"></script> | |
| <!-- Various misc bits of code --> | |
| <script src="js/Props.js"></script> | |
| <script src="js/cbd/GameObject.js"></script> | |
| <script src="js/cbd/Component.js"></script> | |
| <script src="js/Gui.js"></script> | |
| <script src="js/Cursor.js"></script> | |
| <script src="js/Pea.js"></script> | |
| <script src="js/Sun.js"></script> | |
| <script src="js/Cloud.js"></script> | |
| <!-- Load in all the characters --> | |
| <script src="js/plants/Character.js"></script> | |
| <script src="js/plants/Peashooter.js"></script> | |
| <script src="js/plants/Sunflower.js"></script> | |
| <script src="js/plants/Nut.js"></script> | |
| <script src="js/campers/Zomper.js"></script> | |
| <!-- The main script that starts everything --> | |
| <script src="js/main.js"></script> | |
| </head> | |
| <body> | |
| <div id="game"></div> | |
| </body> | |
| </html> |