Files
FNGameProj/Source/FortniteUI/Public/FortCheatMenuFactory.h
2024-01-21 00:41:14 +01:00

21 lines
522 B
C++

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "FortCheatMenuFactory.generated.h"
class UCommonUserWidget;
UCLASS(Blueprintable)
class UFortCheatMenuFactory : public UObject {
GENERATED_BODY()
public:
UFortCheatMenuFactory();
UFUNCTION(BlueprintCallable)
static void AddStoreCheatMenu(UCommonUserWidget* Widget);
UFUNCTION(BlueprintCallable)
static void AddGrantCheatMenu(UCommonUserWidget* Widget, const FString& TemplateId, const FString& InstanceId);
};