mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
427 B
C++
19 lines
427 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortEncryptionKey.h"
|
|
#include "FortKeyChain.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FORTNITEGAME_API FFortKeyChain {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint32 Hash;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FFortEncryptionKey> Keys;
|
|
|
|
FFortKeyChain();
|
|
};
|
|
|