mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
17 lines
419 B
C++
17 lines
419 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/NetSerialization.h"
|
|
#include "StormWind.h"
|
|
#include "StormWindArray.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FStormWindArray : public FFastArraySerializer {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TArray<FStormWind> StormWinds;
|
|
|
|
FORTNITEGAME_API FStormWindArray();
|
|
};
|
|
|