@adrog
I am just starting to mess around with game development. Your example is great!
One question, where is the call that initiates your game on startup? What instantiates the basketball class?
EDIT: Figured it out. Sorry, didn’t realize you could start an app this way.
window.onload = function() {
game = new Basketball().init();
};