Files
UnrealEngine/Engine/Source/Runtime/Launch/Public/Mac/UEAppDelegate.h
2025-05-18 13:04:45 +08:00

20 lines
385 B
Objective-C

// Copyright Epic Games, Inc. All Rights Reserved.
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
@interface UEAppDelegate : NSObject <NSApplicationDelegate, NSFileManagerDelegate>
{
#if WITH_EDITOR
NSString* Filename;
bool bHasFinishedLaunching;
#endif
}
#if WITH_EDITOR
- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename;
#endif
@end