blob: b255617eb15e473daf89c6a3274664b4704dad78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// AppDelegate.m
// ManaPlus
//
// Created by Philippe Groarke on 2012-12-03.
// Copyright (c) 2012 evolonline. All rights reserved.
//
#import "AppDelegate.h"
@implementation AppDelegate
- (void)dealloc
{
[super dealloc];
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
}
@end
|