mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
18 lines
418 B
C++
18 lines
418 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SkyCapTargetData.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FSkyCapTargetData {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float TargetHeight;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float MoveTime;
|
|
|
|
FORTNITEGAME_API FSkyCapTargetData();
|
|
};
|
|
|