unitysamples / LyraStarterGame /Source /LyraGame /UI /Frontend /LyraLobbyBackground.h
Alexhas2's picture
Add files using upload-large-folder tool
7fd553e verified
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Engine/DataAsset.h"
#include "LyraLobbyBackground.generated.h"
class UObject;
class UWorld;
/**
* Developer settings / editor cheats
*/
UCLASS(config=EditorPerProjectUserSettings, MinimalAPI)
class ULyraLobbyBackground : public UPrimaryDataAsset
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadOnly)
TSoftObjectPtr<UWorld> BackgroundLevel;
};