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

18 lines
414 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "NotifyMessageReceiver.generated.h"
UINTERFACE(Blueprintable)
class UNotifyMessageReceiver : public UInterface {
GENERATED_BODY()
};
class INotifyMessageReceiver : public IInterface {
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
bool OnNotifyMessageReceived(FName TriggerName);
};