mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-22 06:49:30 +00:00
18 lines
295 B
Plaintext
18 lines
295 B
Plaintext
#import "ViewController.h"
|
|
#import "platform/mac/View.h"
|
|
|
|
@implementation ViewController
|
|
{
|
|
View* _view;
|
|
}
|
|
|
|
- (instancetype)initWithSize:(NSRect)rect {
|
|
if (self = [super init]) {
|
|
_view = [[View alloc] initWithFrame:rect];
|
|
self.view = _view;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|