HotPatcher/HotPatcher/Source/HotPatcherCore/Public/HotPatcherDelegates.h
2024-09-09 08:17:43 +08:00

15 lines
358 B
C++

#pragma once
#include "CoreMinimal.h"
#include "GameDelegates.h"
DECLARE_MULTICAST_DELEGATE_TwoParams(FNotificationEvent,FText,const FString&)
class HOTPATCHERCORE_API FHotPatcherDelegates
{
public:
/** Return a single FGameDelegates object */
static FHotPatcherDelegates& Get();
DEFINE_GAME_DELEGATE_TYPED(NotifyFileGenerated,FNotificationEvent);
};