Files
UnrealEngine/Engine/Source/Runtime/Launch/Private/IOS/IOSAppDelegateConsoleHandling.h
2025-05-18 13:04:45 +08:00

30 lines
580 B
Objective-C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IOS/IOSAppDelegate.h"
@interface IOSAppDelegate (ConsoleHandling)
#if !UE_BUILD_SHIPPING && !PLATFORM_TVOS
/**
* Shows the console input dialog
*/
- (void)ShowConsole;
#endif
/**
* Shows an alert with up to 3 buttons. A delegate callback will later set AlertResponse property
*/
- (void)ShowAlert:(NSMutableArray*)StringArray;
#if !UE_BUILD_SHIPPING && !PLATFORM_TVOS
/**
* Handles processing of an input console command
*/
- (void)HandleConsoleCommand:(NSString*)ConsoleCommand;
#endif
@end