LEAP Documentation 40220
Documentation for the LEAP project
RemoteConsoleStatics.h
Go to the documentation of this file.
1// Copyright 2019 Blue Isle Studios Inc.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7class UWorld;
9
10class PROJECTX_API RemoteConsoleStatics
11{
12public:
15
16 static UWorld* GetWorld();
17 static FString BuildParamFromList(int32 StartingIndex, const TArray<FString>& ParamList);
18 static FString ServerSay(const FString& Message);
19 static FString Command(const FString& Command, AProjectXPlayerController* const PlayerController = nullptr);
20 static FString ListCommands();
21
22 static FString Cheat_Exec(const FString& Command, AProjectXPlayerController* const PlayerController = nullptr);
23 static FString GetHealth();
24};
Definition: ProjectXPlayerController.h:83
Definition: RemoteConsoleStatics.h:11