1234567891011121314151617 |
- //
- // main.m
- // LXMPlayer
- //
- // Created by billthas@gmail.com on 08/28/2018.
- // Copyright (c) 2018 billthas@gmail.com. All rights reserved.
- //
- @import UIKit;
- #import "LXMAppDelegate.h"
- int main(int argc, char * argv[])
- {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([LXMAppDelegate class]));
- }
- }
|