SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
iOS/GBView.m
1 #import "GBView.h"
2
3 @implementation GBView
4 - (instancetype)initWithFrame:(CGRect)frame
5 {
6 self = [super initWithFrame:frame];
7 [self createInternalView];
8 [self addSubview:self.internalView];
9 self.internalView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
10 return self;
11 }
12 @end
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.