diff --git a/main.m b/main.m new file mode 100644 index 00000000..7f25f7bf --- /dev/null +++ b/main.m @@ -0,0 +1,19 @@ + +// +// main.m +// SlashPoker +// +// Created by Lolo on 13/05/11. +// Copyright 2011 Stax River. All rights reserved. +// + +#import +#import "SlashPokerAppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + int retVal = UIApplicationMain(argc, argv, NSStringFromClass([PAApplication class]), NSStringFromClass([SlashPokerAppDelegate class])); + return retVal; + } +}