Created
January 16, 2014 19:42
-
-
Save caubry/8461948 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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