mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
16 lines
363 B
C++
16 lines
363 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SmartObjectExecutionSlot.h"
|
|
#include "SmartObjectUse.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct SMARTOBJECTSMODULE_API FSmartObjectUse {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FSmartObjectExecutionSlot Slot;
|
|
|
|
FSmartObjectUse();
|
|
};
|
|
|