X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=JSAction.m;h=1cdbeb23e4f0e5b32fe4052cbd25d3a9a3bb1353;hp=0216e582f1e3729c1a61d8231dc36a7c6eab3a80;hb=f563321aec9e13b8479ab3b890a9179f095a8b17;hpb=2fb801b58b29997f54443d9879d2e20ae8b169ad diff --git a/JSAction.m b/JSAction.m index 0216e58..1cdbeb2 100644 --- a/JSAction.m +++ b/JSAction.m @@ -9,13 +9,7 @@ @implementation JSAction -@synthesize cookie; -@synthesize children; -@synthesize base; -@synthesize name; -@synthesize active; - -- (id)initWithName:(NSString *)newName base:(JSAction *)newBase { +- (id)initWithName:(NSString *)newName base:(id )newBase { if ((self = [super init])) { self.name = newName; self.base = newBase; @@ -28,7 +22,7 @@ } - (NSString *)uid { - return [NSString stringWithFormat:@"%@~%@", [self.base uid], self.name]; + return [NSString stringWithFormat:@"%@~%@", [_base uid], _name]; } - (void)notifyEvent:(IOHIDValueRef)value {