Remove website, now in yukkurigames.com repository.
[enjoyable.git] / Classes / NJInputPathElement.h
1 //
2 // NJInputPathElement.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/13/13.
6 //
7 //
8 @interface NJInputPathElement : NSObject
9
10 - (id)initWithName:(NSString *)name
11 eid:(NSString *)eid
12 parent:(NJInputPathElement *)parent;
13
14 @property (nonatomic, weak) NJInputPathElement *parent;
15 @property (nonatomic, copy) NSString *name;
16 @property (nonatomic, readonly) NSString *uid;
17 @property (nonatomic, strong) NSArray *children;
18
19 - (NJInputPathElement *)elementForUID:(NSString *)uid;
20
21 @end