mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-22 22:22:42 +01:00
12 lines
188 B
Objective-C
12 lines
188 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface JOYHat : NSObject
|
|
- (uint64_t)uniqueID;
|
|
- (double)angle;
|
|
- (unsigned)resolution;
|
|
@property (readonly, getter=isPressed) bool pressed;
|
|
|
|
@end
|
|
|
|
|