X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=JSAction.h;h=0e2584726f52cffb7d0ddaa00f779c975d486f60;hp=b92c7d6301017b0ecd88b2335b388db8e8d3a132;hb=635728b6f6775384f7cbc212a4b05198ef024c15;hpb=aac34aedcd7163850a4f12a5553ae109ff4b92f1 diff --git a/JSAction.h b/JSAction.h index b92c7d6..0e25847 100644 --- a/JSAction.h +++ b/JSAction.h @@ -6,21 +6,19 @@ // Copyright 2009 University of Otago. All rights reserved. // -#import -#import - @interface JSAction : NSObject -@property (assign) void *cookie; -@property (assign) int index; -@property (copy) NSArray *children; -@property (weak) id base; -@property (copy) NSString *name; -@property (assign) BOOL active; -@property (readonly) float magnitude; +@property (nonatomic, assign) IOHIDElementCookie cookie; +@property (nonatomic, copy) NSArray *children; +@property (nonatomic, weak) id base; +@property (nonatomic, copy) NSString *name; +@property (nonatomic, assign) BOOL active; +@property (nonatomic, readonly) float magnitude; +@property (readonly) NSString *uid; + +- (id)initWithName:(NSString *)newName base:(JSAction *)newBase; - (void)notifyEvent:(IOHIDValueRef)value; -- (NSString *)stringify; - (id)findSubActionForValue:(IOHIDValueRef)value; @end