Created
February 25, 2017 21:17
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
@implementation FlyableHumans : Humans | |
-(void) fly { | |
//implement fly | |
} | |
@end | |
@implementation IronMan : FlyableHumans | |
//implement Iron man | |
@end | |
@implementation WarMachine : FlyableHumans | |
//implement war machine | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment