15 lines
358 B
C++
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);
|
|
}; |