You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
403 B
19 lines
403 B
|
|
//
|
|
// main.m
|
|
// SlashPoker
|
|
//
|
|
// Created by Lolo on 13/05/11.
|
|
// Copyright 2011 Stax River. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SlashPokerAppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, NSStringFromClass([PAApplication class]), NSStringFromClass([SlashPokerAppDelegate class]));
|
|
return retVal;
|
|
}
|
|
}
|
|
|