mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
19 lines
580 B
C++
19 lines
580 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Components/PrimitiveComponent.h"
|
|
#include "ESOReferenceDrawingMode.h"
|
|
#include "SmartObjectRenderingComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class SMARTOBJECTSMODULE_API USmartObjectRenderingComponent : public UPrimitiveComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
ESOReferenceDrawingMode ReferenceDrawingMode;
|
|
|
|
public:
|
|
USmartObjectRenderingComponent();
|
|
};
|
|
|