Created
November 23, 2013 18:25
-
-
Save hcarreras/7618166 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
#import "Nature.h" | |
@implementation Nature | |
-(id)init | |
{ | |
self = [super init]; | |
return self; | |
} | |
- (id)initNature: | |
{ | |
Clue *es_naturaleza; | |
_es_naturaleza = [[Clue alloc] initTodo: @"es naturaleza": @"yes": @"es naturaleza"]; | |
self = [super initTodo: letra]; | |
return self; | |
} | |
@end | |
@implementation Arbol | |
-(id)init | |
{ | |
Clue *no_se_mueve, *letra_inicial, *tiene_hojas; | |
self = [super initNature]; | |
if (self) { | |
_tiene_hojas = [[Clue alloc] initTodo: @"tiene hojas": @"yes": @"tiene hojas."]; | |
_no_se_mueve = [[Clue alloc] initTodo: @"se mueve" :@"no" :@"no se mueve."]; | |
_letra_inicial = [[Clue alloc] initTodo: @"letra_inicial" :@"a" :@"empieza por la letra A"]; | |
self.clues = [NSMutableArray alloc]; | |
self.clues = [NSMutableArray arrayWithObjects: _no_se_mueve, _letra_inicial, sonido, letra_inicial, nil]; | |
self.nombre = @"arbol"; | |
} | |
return self; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment