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

20 lines
536 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EnemyAnimInstance.h"
#include "JellyFishAnimInstance.generated.h"
UCLASS(Blueprintable, NonTransient)
class UJellyFishAnimInstance : public UEnemyAnimInstance {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float HorizontalAngle;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float VerticalSpeed;
public:
UJellyFishAnimInstance();
};