mirror of
https://github.com/wnagrodzki/NGModalPresentation.git
synced 2025-04-05 03:52:01 +02:00
17 lines
302 B
Mathematica
17 lines
302 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// ModalPresentation
|
||
|
//
|
||
|
// Created by Wojciech Nagrodzki on 04/10/2014.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
}
|
||
|
}
|