mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-23 08:59:40 +00:00
ec18efcb04
git-subtree-dir: bsnes/gb git-subtree-mainline:844e23d0f4
git-subtree-split:919a88ec23
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
|
|
|
|
|