mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
532 B
C++
17 lines
532 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "Engine/DeveloperSettings.h"
|
|
#include "LocalNotificationsSettings.generated.h"
|
|
|
|
UCLASS(Blueprintable, Config=Engine, DefaultConfig, Config=Game)
|
|
class LOCALNOTIFICATIONS_API ULocalNotificationsSettings : public UDeveloperSettings {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, GlobalConfig, meta=(AllowPrivateAccess=true))
|
|
FSoftObjectPath StringTableLocalNotifications;
|
|
|
|
ULocalNotificationsSettings();
|
|
};
|
|
|