2
0

17 lines
335 B
Mathematica
Raw Normal View History

2011-11-30 22:42:40 +01:00
//
// main.m
2012-02-03 08:45:09 +01:00
// MasterPassword
2011-11-30 22:42:40 +01:00
//
// Created by Maarten Billemont on 24/11/11.
// Copyright (c) 2011 Lyndir. All rights reserved.
//
#import "MPiOSAppDelegate.h"
2011-11-30 22:42:40 +01:00
2012-06-08 23:46:13 +02:00
int main(int argc, char *argv[]) {
2011-11-30 22:42:40 +01:00
@autoreleasepool {
return UIApplicationMain( argc, argv, nil, NSStringFromClass( [MPiOSAppDelegate class] ) );
2011-11-30 22:42:40 +01:00
}
}