Skip to content

Instantly share code, notes, and snippets.

@caubry
Created January 16, 2014 19:42
Show Gist options
  • Save caubry/8461948 to your computer and use it in GitHub Desktop.
Save caubry/8461948 to your computer and use it in GitHub Desktop.
Weapon = Class.extend({
init: function() {
}
});
MachineGun = Weapon.extend({
init: function() {
}
});
Weapon = Class.extend({});
MachineGun = Weapon.extend({});
Entity = Class.extend({});
ChainGun = Weapon.extend({});
Teleporter = Entity.extend({});
EnergyCanister = Entity.extend({});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment