mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
21 lines
522 B
C++
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);
|
|
|
|
};
|
|
|