mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
26 lines
744 B
C++
26 lines
744 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SmartObjectUse.h"
|
|
#include "SmartObjectRuntime.generated.h"
|
|
|
|
class IRichSmartObjectInterface;
|
|
class URichSmartObjectInterface;
|
|
class USmartObjectComponent;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FSmartObjectRuntime {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
USmartObjectComponent* SOComponent;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TScriptInterface<IRichSmartObjectInterface> AsRichSO;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FSmartObjectUse> ActiveUses;
|
|
|
|
SMARTOBJECTSMODULE_API FSmartObjectRuntime();
|
|
};
|
|
|