17 lines
377 B
C++
Executable file
17 lines
377 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "PerkEquipEntry.h"
|
|
#include "CharacterPerksSave.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FCharacterPerksSave {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FPerkEquipEntry> CharacterPerks;
|
|
|
|
public:
|
|
FSD_API FCharacterPerksSave();
|
|
};
|
|
|