mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 20:08:38 +09:00
18 lines
346 B
Objective-C
18 lines
346 B
Objective-C
//
|
|
// main.m
|
|
// SWTableViewCell
|
|
//
|
|
// Created by Chris Wendel on 9/10/13.
|
|
// Copyright (c) 2013 Chris Wendel. 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]));
|
|
}
|
|
}
|