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