12 lines
276 B
C++
Executable file
12 lines
276 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimNotifies/AnimNotify.h"
|
|
#include "StopLeadingNotify.generated.h"
|
|
|
|
UCLASS(Blueprintable, CollapseCategories)
|
|
class UStopLeadingNotify : public UAnimNotify {
|
|
GENERATED_BODY()
|
|
public:
|
|
UStopLeadingNotify();
|
|
};
|
|
|