mirror of
https://github.com/OpenEmu/OpenEmu-SDK.git
synced 2025-11-01 10:15:12 +00:00
24 lines
413 B
Objective-C
24 lines
413 B
Objective-C
//
|
|
// OEBindingDescription.h
|
|
// OpenEmu-SDK
|
|
//
|
|
// Created by Remy Demarest on 24/11/2015.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OESystemController;
|
|
|
|
@interface OEBindingDescription : NSObject <NSCopying, NSSecureCoding>
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
@property (weak, nullable, readonly, nonatomic) OESystemController *systemController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|