mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-18 20:07:55 +00:00
28 lines
505 B
Objective-C
28 lines
505 B
Objective-C
//
|
|
// ViewController.m
|
|
// Apple2etvOS
|
|
//
|
|
// Created by Jerome Vernet on 01/01/2016.
|
|
// Copyright © 2016 deadc0de.org. All rights reserved.
|
|
//
|
|
|
|
#import "ViewController.h"
|
|
|
|
@interface ViewController ()
|
|
|
|
@end
|
|
|
|
@implementation ViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
@end
|