mirror of https://github.com/LIJI32/SameBoy.git
17 lines
419 B
Objective-C
17 lines
419 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "GBLayout.h"
|
|
#import "GBView.h"
|
|
|
|
@interface GBBackgroundView : UIImageView
|
|
- (instancetype)initWithLayout:(GBLayout *)layout;
|
|
|
|
@property (readonly) GBView *gbView;
|
|
@property (nonatomic) GBLayout *layout;
|
|
@property (nonatomic) bool usesSwipePad;
|
|
@property (nonatomic) bool fullScreenMode;
|
|
|
|
- (void)enterPreviewMode:(bool)showLabel;
|
|
- (void)reloadThemeImages;
|
|
- (void)fadeOverlayOut;
|
|
@end
|