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

23 lines
606 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ProjectileAttackBaseComponent.h"
#include "ProjectileAttackComponent.generated.h"
class UAnimMontage;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UProjectileAttackComponent : public UProjectileAttackBaseComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool ManualyComplete;
public:
UProjectileAttackComponent();
protected:
UFUNCTION(BlueprintCallable)
void AddAttackMontage(UAnimMontage* attackMontage);
};