File size: 654 Bytes
1e67697 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameFramework/CheatManager.h"
#include "LyraBotCheats.generated.h"
class ULyraBotCreationComponent;
class UObject;
struct FFrame;
/** Cheats related to bots */
UCLASS(NotBlueprintable)
class ULyraBotCheats final : public UCheatManagerExtension
{
GENERATED_BODY()
public:
ULyraBotCheats();
// Adds a bot player
UFUNCTION(Exec, BlueprintAuthorityOnly)
void AddPlayerBot();
// Removes a random bot player
UFUNCTION(Exec, BlueprintAuthorityOnly)
void RemovePlayerBot();
private:
ULyraBotCreationComponent* GetBotComponent() const;
};
|