My Base Code for LD 31

Once again I will be using my base code that I have built up since LD 26. The base code is identical to the one I used for LD 30. It is written in JavaScript and can be used to create HTML5/canvas games. You can find the base code on github: https://github.com/ZYXer-/ludum-dare-base-code

Features:
– a simple game loop
– mouse/keyboard input processing
– image/sound preloading

Additional classes for:
– playing sounds (using SoundManager2)
– loading and displaying PNG fonts
– particle systems
– pathfinding (using A*)
– synchronization with server (see below) including a simple login & sign up screen

My base code also includes a simple server (written in PHP), which could be used to synchronize things like highscores, but which is definitely not suitable for a real-time online game.

I’m distributing the code under the GPL2 license, so feel free to use any part of it for your own project. And please – like always – report any bugs 😉