mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
16 lines
404 B
C++
16 lines
404 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "FortGetMcpTimeForPlayerNotification.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FORTNITEGAME_API FFortGetMcpTimeForPlayerNotification {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FDateTime McpTime;
|
|
|
|
FFortGetMcpTimeForPlayerNotification();
|
|
};
|
|
|