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

19 lines
429 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CombinedUpgrade.h"
#include "OverclockUpgrade.generated.h"
class USchematicCategory;
UCLASS(Blueprintable, EditInlineNew)
class UOverclockUpgrade : public UCombinedUpgrade {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USchematicCategory* SchematicCategory;
public:
UOverclockUpgrade();
};