Ark Server API (ASA) - Wiki
|
#include <IConsoleManager.h>
Public Member Functions | |
FAutoConsoleCommand (const TCHAR *Name, const TCHAR *Help, const FConsoleCommandDelegate &Command, uint32 Flags=ECVF_Default) | |
FAutoConsoleCommand (const TCHAR *Name, const TCHAR *Help, const FConsoleCommandWithArgsDelegate &Command, uint32 Flags=ECVF_Default) | |
FAutoConsoleCommand (const TCHAR *Name, const TCHAR *Help, const FConsoleCommandWithWorldArgsAndOutputDeviceDelegate &Command, uint32 Flags=ECVF_Default) | |
Additional Inherited Members | |
Private Member Functions inherited from FAutoConsoleObject | |
virtual | ~FAutoConsoleObject () |
FORCEINLINE IConsoleVariable * | AsVariable () |
FORCEINLINE const IConsoleVariable * | AsVariable () const |
FAutoConsoleObject (IConsoleObject *InTarget) | |
Static Private Member Functions inherited from FAutoConsoleObject | |
static TArray< const FAutoConsoleObject * > & | AccessGeneralShaderChangeCvars () |
static TArray< const FAutoConsoleObject * > & | AccessMobileShaderChangeCvars () |
static TArray< const FAutoConsoleObject * > & | AccessDesktopShaderChangeCvars () |
Autoregistering console command
Definition at line 1716 of file IConsoleManager.h.
|
inline |
Register a console command that takes no arguments
Name | The name of this command (must not be nullptr) |
Help | Help text for this command |
Command | The user function to call when this command is executed |
Flags | Optional flags bitmask |
Definition at line 1727 of file IConsoleManager.h.
|
inline |
Register a console command that takes arguments
Name | The name of this command (must not be nullptr) |
Help | Help text for this command |
Command | The user function to call when this command is executed |
Flags | Optional flags bitmask |
Definition at line 1740 of file IConsoleManager.h.
|
inline |
Register a console command that takes arguments, a world argument and an output device
Name | The name of this command (must not be nullptr) |
Help | Help text for this command |
Command | The user function to call when this command is executed |
Flags | Optional flags bitmask |
Definition at line 1753 of file IConsoleManager.h.