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

17 lines
428 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimNotifies/AnimNotify.h"
#include "EnemyMeleeAttackAnimNotify.generated.h"
UCLASS(Blueprintable, CollapseCategories)
class UEnemyMeleeAttackAnimNotify : public UAnimNotify {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FName AttackTag;
public:
UEnemyMeleeAttackAnimNotify();
};