mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2025-01-15 07:15:16 +00:00
16 lines
331 B
Objective-C
Executable file
16 lines
331 B
Objective-C
Executable file
//
|
|
// main.m
|
|
// uartadapter
|
|
//
|
|
// Created by isaiah on 8/26/15.
|
|
// Copyright (c) 2015 realtek. 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]));
|
|
}
|
|
}
|