15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
// Copyright 2019 Google LLC. All Rights Reserved.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
@end
|
|
|
|
@implementation AppDelegate {
|
|
}
|
|
@end
|
|
|
|
int main(int argc, char** argv) {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|