diff options
author | Socapex <philippe_groarke@yahoo.ca> | 2012-12-03 18:29:54 -0500 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-04 03:06:29 +0300 |
commit | 8bf33f1619c548d3901cf139dcf2a83b71c2b63c (patch) | |
tree | df4a18ef8283cc1e25563e3773a6bb6f201ad05b /Xcode/ManaPlus/AppDelegate.m | |
parent | 32f981a9424a133298fa7a1f28455b4af9527008 (diff) | |
download | plus-8bf33f1619c548d3901cf139dcf2a83b71c2b63c.tar.gz plus-8bf33f1619c548d3901cf139dcf2a83b71c2b63c.tar.bz2 plus-8bf33f1619c548d3901cf139dcf2a83b71c2b63c.tar.xz plus-8bf33f1619c548d3901cf139dcf2a83b71c2b63c.zip |
Initial changes for OS X build.
Diffstat (limited to 'Xcode/ManaPlus/AppDelegate.m')
-rw-r--r-- | Xcode/ManaPlus/AppDelegate.m | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Xcode/ManaPlus/AppDelegate.m b/Xcode/ManaPlus/AppDelegate.m new file mode 100644 index 000000000..b255617eb --- /dev/null +++ b/Xcode/ManaPlus/AppDelegate.m @@ -0,0 +1,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 |