mirror of https://github.com/bsnes-emu/bsnes.git
[Sameboy] Add type annotations to GBImageView's grid arrays.
This commit is contained in:
parent
931045fd9b
commit
557f554270
|
@ -9,8 +9,8 @@
|
|||
@end
|
||||
|
||||
@interface GBImageView : NSImageView
|
||||
@property (nonatomic, strong) NSArray *horizontalGrids;
|
||||
@property (nonatomic, strong) NSArray *verticalGrids;
|
||||
@property (nonatomic, strong) NSArray<GBImageViewGridConfiguration *> *horizontalGrids;
|
||||
@property (nonatomic, strong) NSArray<GBImageViewGridConfiguration *> *verticalGrids;
|
||||
@property (nonatomic) bool displayScrollRect;
|
||||
@property NSRect scrollRect;
|
||||
@property (nonatomic, weak) IBOutlet id<GBImageViewDelegate> delegate;
|
||||
|
|
Loading…
Reference in New Issue