Files
UnrealEngineUWP/Engine/Source/Programs/IOS/UDKRemote/Classes/UDKRemoteAppDelegate.h
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

35 lines
778 B
Objective-C

// Copyright 1998-2015 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