mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
15 lines
347 B
C++
15 lines
347 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "PlaylistStreamedLevelData.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FPlaylistStreamedLevelData {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bIsFinishedStreaming;
|
|
|
|
FORTNITEGAME_API FPlaylistStreamedLevelData();
|
|
};
|
|
|