Skip to content

Instantly share code, notes, and snippets.

@hcarreras
Created November 24, 2013 18:35
Show Gist options
  • Save hcarreras/7630608 to your computer and use it in GitHub Desktop.
Save hcarreras/7630608 to your computer and use it in GitHub Desktop.
- (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