Files
UnrealEngine/Samples/Games/Lyra/Source/LyraGame/Weapons/InventoryFragment_ReticleConfig.h
2025-05-18 13:04:45 +08:00

21 lines
459 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Inventory/LyraInventoryItemDefinition.h"
#include "InventoryFragment_ReticleConfig.generated.h"
class ULyraReticleWidgetBase;
class UObject;
UCLASS()
class UInventoryFragment_ReticleConfig : public ULyraInventoryItemFragment
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=Reticle)
TArray<TSubclassOf<ULyraReticleWidgetBase>> ReticleWidgets;
};