forked from sonam2006/Adventure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSadEndingViewController.m
More file actions
39 lines (31 loc) · 841 Bytes
/
Copy pathSadEndingViewController.m
File metadata and controls
39 lines (31 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// SadEndingViewController.m
// Adventure
//
// Created by Andrew Webb on 1/8/14.
// Copyright (c) 2014 Mobile Makers. All rights reserved.
//
#import "SadEndingViewController.h"
@interface SadEndingViewController ()
@end
@implementation SadEndingViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"gameOver.png"]];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end