Created
June 25, 2012 19:40
-
-
Save martinwells/2990775 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Fighter = gamecore.Base.extend('Fighter', | |
{ | |
// static (this is inherited as well) | |
firingSpeed: 1000 | |
}, | |
{ | |
// instance | |
hp: 0, | |
init: function(hp) // instance constructor | |
{ | |
this.hp = hp; | |
}, | |
fire: function() | |
{ | |
this._super(); // super methods! | |
// do firing! | |
} | |
}); | |
var gunship = new Fighter(100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment