Files
UnrealEngineUWP/Engine/Source/Programs/IOS/UDKRemote/Classes/UDKRemoteAppDelegate.h
2014-03-14 14:13:41 -04:00

35 lines
778 B
Objective-C

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
//
// UDKRemoteAppDelegate.h
// UDKRemote
//
// Created by jadams on 7/28/10.
//
#import <UIKit/UIKit.h>
@class MainViewController;
@interface UDKRemoteAppDelegate : NSObject <UIApplicationDelegate>
{
UIWindow *window;
MainViewController *mainViewController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) MainViewController *mainViewController;
/** Properties set in the settings view */
@property (retain) NSString* PCAddress;
@property int Port;
@property BOOL bShouldIgnoreTilt;
@property BOOL bShouldIgnoreTouch;
@property BOOL bLockOrientation;
@property UIInterfaceOrientation LockedOrientation;
@property (retain) NSMutableArray* RecentComputers;
@end