test/Source/MyProject/Variant_Combat/Animation/AnimNotify_CheckCombo.h

25 lines
602 B
C
Raw Permalink Normal View History

2026-03-10 14:53:35 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimNotifies/AnimNotify.h"
#include "AnimNotify_CheckCombo.generated.h"
/**
* AnimNotify to perform a combo string check.
*/
UCLASS()
class UAnimNotify_CheckCombo : public UAnimNotify
{
GENERATED_BODY()
public:
/** Perform the Anim Notify */
virtual void Notify(USkeletalMeshComponent* MeshComp, UAnimSequenceBase* Animation, const FAnimNotifyEventReference& EventReference) override;
/** Get the notify name */
virtual FString GetNotifyName_Implementation() const override;
};