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

17 lines
432 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "FlyingBugAnimInstance.h"
#include "JellyBreederAnimInstance.generated.h"
UCLASS(Blueprintable, NonTransient)
class UJellyBreederAnimInstance : public UFlyingBugAnimInstance {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool ReadyToSpawnEggs;
public:
UJellyBreederAnimInstance();
};