Created
November 24, 2013 18:35
-
-
Save hcarreras/7630608 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
- (id)initAnimal: (Clue *) letra : (Clue *) sonido : (Clue *) tiene_esqueleto; | |
{ | |
_sonido = sonido; | |
_tiene_esqueleto = tiene_esqueleto | |
_come = [[Clue alloc] initTodo: @"come" : @"si" : @"come."]; | |
_respira = [[Clue alloc] initTodo: @"respira" : @"si" : @"respira."]; | |
_se_reproduce = [[Clue alloc] initTodo: @"se reproduce" : @"si" : @"se reproduce."]; | |
_tiene_sangre = [[Clue alloc] initTodo: @"tiene sangre" : @"si" : @"tiene sangre."]; | |
_se_mueve = [[Clue alloc] initTodo: @"se mueve" : @"si" : @"se mueve."]; | |
_tiene_celulas = [[Clue alloc] initTodo: @"tiene celulas" : @"si" : @"esta formado por celulas."]; | |
self = [super initTodo: letra]; | |
return self; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment