mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 15:26:11 +00:00
21 lines
435 B
Objective-C
21 lines
435 B
Objective-C
//
|
|
// main.m
|
|
// Moonlight TV
|
|
//
|
|
// Created by Diego Waxemberg on 8/25/18.
|
|
// Copyright © 2018 Moonlight Game Streaming Project. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
#define SDL_MAIN_HANDLED
|
|
#import <SDL.h>
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
SDL_SetMainReady();
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|