DRG-Femboy-Voice/Source/FSD/Public/GlobalMissionParameters.h
2025-04-15 12:39:31 -07:00

18 lines
436 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "ResourceSpawner.h"
#include "GlobalMissionParameters.generated.h"
UCLASS(Blueprintable)
class UGlobalMissionParameters : public UDataAsset {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FResourceSpawner> DefaultResources;
public:
UGlobalMissionParameters();
};