mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 04:03:46 +00:00
15 lines
362 B
C++
15 lines
362 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAnimInput_CreativeMoveTool.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortAnimInput_CreativeMoveTool {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
bool bIsFlying;
|
|
|
|
FORTNITEGAME_API FFortAnimInput_CreativeMoveTool();
|
|
};
|
|
|