21 lines
520 B
C++
Executable file
21 lines
520 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "RejoinInt.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FRejoinInt {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FGuid ItemKey;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FName ValueKey;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
int32 Value;
|
|
|
|
FSD_API FRejoinInt();
|
|
};
|
|
|