mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
19 lines
482 B
C++
19 lines
482 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/NetSerialization.h"
|
|
#include "DeployableBaseInstance.h"
|
|
#include "DeployableBaseArray.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FDeployableBaseArray : public FFastArraySerializer {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TArray<FDeployableBaseInstance> DeployableBases;
|
|
|
|
public:
|
|
FORTNITEGAME_API FDeployableBaseArray();
|
|
};
|
|
|