mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
20 lines
475 B
C++
20 lines
475 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataAsset.h"
|
|
#include "FortTimeOfDayCollection.generated.h"
|
|
|
|
class AFortTimeOfDayManager;
|
|
|
|
UCLASS(Blueprintable)
|
|
class FORTNITEGAME_API UFortTimeOfDayCollection : public UDataAsset {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<TSoftClassPtr<AFortTimeOfDayManager>> TimeOfDayManagers;
|
|
|
|
public:
|
|
UFortTimeOfDayCollection();
|
|
};
|
|
|