From 3b1dddee24d1b9c9ffce6a27b9800f52fbed8732 Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 11 Feb 2019 11:32:55 +0100 Subject: [PATCH] first test --- main.m | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main.m 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; + } +}