Files
UnrealEngineUWP/Engine/Source/Programs/IOS/UDKRemote/Classes/UDKRemoteAppDelegate.h
Ryan Vance 7c51ff94af Merging //UE4/Dev-Main to Dev-VR (//UE4/Dev-VR)
CL 1 of 8
#rb integration

[CL 4748712 by Ryan Vance in Dev-VR branch]
2019-01-17 18:54:05 -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