4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
17 lines
349 B
Objective-C
17 lines
349 B
Objective-C
//
|
|
// main.m
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 12/09/18.
|
|
// Copyright © 2018 Luca Beretta. 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]));
|
|
}
|
|
}
|