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

34 lines
1 KiB
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimInstance.h"
#include "EscortMuleAnimInstance.generated.h"
class UHealthComponent;
UCLASS(Blueprintable, NonTransient)
class UEscortMuleAnimInstance : public UAnimInstance {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool LeftCannistersVisible;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool RightCannistersVisible;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool IsEngineRunning;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool IsBeingRefueled;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool PlatformOut;
public:
UEscortMuleAnimInstance();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnTookDamage(UHealthComponent* Health);
};