Skip to content

Instantly share code, notes, and snippets.

@martinwells
Created June 25, 2012 19:41
Show Gist options
  • Save martinwells/2990778 to your computer and use it in GitHub Desktop.
Save martinwells/2990778 to your computer and use it in GitHub Desktop.
// inherit from the fighter class
var HeavyFighter = Fighter.extend('HeavyFighter',
{
// override the (static) firing delay (rapid fire)
firingSpeed: 300
},
{ });
var heavyGunship = new HeavyFighter(500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment