X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=JSAction.m;fp=JSAction.m;h=0000000000000000000000000000000000000000;hp=1cdbeb23e4f0e5b32fe4052cbd25d3a9a3bb1353;hb=f864d363128de19fc6591b77ae9226b34166d715;hpb=f563321aec9e13b8479ab3b890a9179f095a8b17 diff --git a/JSAction.m b/JSAction.m deleted file mode 100644 index 1cdbeb2..0000000 --- a/JSAction.m +++ /dev/null @@ -1,36 +0,0 @@ -// -// JSAction.m -// Enjoy -// -// Created by Sam McCall on 4/05/09. -// - -#import "JSAction.h" - -@implementation JSAction - -- (id)initWithName:(NSString *)newName base:(id )newBase { - if ((self = [super init])) { - self.name = newName; - self.base = newBase; - } - return self; -} - -- (id)findSubActionForValue:(IOHIDValueRef)value { - return NULL; -} - -- (NSString *)uid { - return [NSString stringWithFormat:@"%@~%@", [_base uid], _name]; -} - -- (void)notifyEvent:(IOHIDValueRef)value { - [self doesNotRecognizeSelector:_cmd]; -} - -- (float)magnitude { - return 0.f; -} - -@end