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

21 lines
497 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "GearStatEntry.h"
#include "UpgradableGear.generated.h"
class AFSDPlayerState;
UINTERFACE(Blueprintable)
class UUpgradableGear : public UInterface {
GENERATED_BODY()
};
class IUpgradableGear : public IInterface {
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
void GetGearStatEntry(AFSDPlayerState* PlayerState, UPARAM(Ref) TArray<FGearStatEntry>& Stats) const;
};