DRG-Femboy-Voice/Source/FSD/Public/EnemyShowroomItem.h
2025-04-15 12:39:31 -07:00

18 lines
401 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EShowroomScaling.h"
#include "ShowroomItem.h"
#include "EnemyShowroomItem.generated.h"
UCLASS(Blueprintable)
class AEnemyShowroomItem : public AShowroomItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EShowroomScaling Scaling;
public:
AEnemyShowroomItem();
};