17 lines
333 B
Objective-C
17 lines
333 B
Objective-C
//
|
|
// main.m
|
|
// TestModuleMap
|
|
//
|
|
// Created by Robbie Hanson on 11/3/15.
|
|
// Copyright © 2015 Deusty LLC. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|