mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
24 lines
630 B
C++
24 lines
630 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/NetSerialization.h"
|
|
#include "GameMemberInfo.h"
|
|
#include "GameMemberInfoArray.generated.h"
|
|
|
|
class AFortGameStateAthena;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FGameMemberInfoArray : public FFastArraySerializer {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FGameMemberInfo> Members;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, NotReplicated, Transient, meta=(AllowPrivateAccess=true))
|
|
AFortGameStateAthena* OwningGameState;
|
|
|
|
public:
|
|
FORTNITEGAME_API FGameMemberInfoArray();
|
|
};
|
|
|