mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-21 13:42:33 +01:00
11 lines
275 B
Objective-C
11 lines
275 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#include <IOKit/hid/IOHIDLib.h>
|
|
#include "JOYElement.h"
|
|
|
|
@interface JOYFullReportElement : JOYElement<NSCopying>
|
|
- (instancetype)initWithDevice:(IOHIDDeviceRef) device reportID:(unsigned)reportID;
|
|
- (void)updateValue:(NSData *)value;
|
|
@end
|
|
|
|
|