17 lines
379 B
C++
Executable file
17 lines
379 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CaveInfluenceSet.h"
|
|
#include "InfluenceMap.generated.h"
|
|
|
|
class UObject;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FInfluenceMap {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TMap<UObject*, FCaveInfluenceSet> CaveInfluences;
|
|
|
|
FSD_API FInfluenceMap();
|
|
};
|
|
|