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

17 lines
412 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimInstance.h"
#include "TetherAnimInstance.generated.h"
UCLASS(Blueprintable, NonTransient)
class UTetherAnimInstance : public UAnimInstance {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool SearchingForConnection;
public:
UTetherAnimInstance();
};