12 lines
314 B
C++
Executable file
12 lines
314 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimNotifies/AnimNotify_PlaySound.h"
|
|
#include "FSDAnimNotify_PlaySound.generated.h"
|
|
|
|
UCLASS(Blueprintable, CollapseCategories)
|
|
class UFSDAnimNotify_PlaySound : public UAnimNotify_PlaySound {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFSDAnimNotify_PlaySound();
|
|
};
|
|
|