9 lines
261 B
Objective-C
9 lines
261 B
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
@protocol GBJoystickListener <NSObject>
|
|
|
|
- (void) joystick:(NSString *)joystick_name button: (unsigned)button changedState: (bool) state;
|
|
- (void) joystick:(NSString *)joystick_name axis: (unsigned)axis movedTo: (signed) value;
|
|
|
|
@end
|