Files
UnrealEngineUWP/Engine/Source/Programs/IOS/UDKRemote/Classes/UDKRemoteAppDelegate.h
Ben Marsh 7598af0532 Update copyright notices to 2019.
#rb none
#lockdown Nick.Penwarden

[CL 4662404 by Ben Marsh in Main branch]
2018-12-14 13:41:00 -05:00

34 lines
800 B
Objective-C

// Copyright 1998-2019 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 BOOL bShouldIgnoreTilt;
@property BOOL bShouldIgnoreTouch;
@property BOOL bLockOrientation;
@property UIInterfaceOrientation LockedOrientation;
@property (retain) NSMutableArray* RecentComputers;
@property (retain) NSMutableArray* Ports;
@end