DRG-Femboy-Voice/Source/FSD/Public/FlyingFormationData.h
2025-04-15 12:39:31 -07:00

23 lines
595 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "FormationData.h"
#include "FlyingFormationData.generated.h"
UCLASS(Blueprintable)
class UFlyingFormationData : public UFormationData {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 FormationSize;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float FormationSpread;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float RandomSpread;
public:
UFlyingFormationData();
};