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

23 lines
628 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SingleUsableComponent.h"
#include "JettyBootUsableComponent.generated.h"
class APlayerCharacter;
class UMissionStat;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class FSD_API UJettyBootUsableComponent : public USingleUsableComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 CreditPrice;
public:
UJettyBootUsableComponent();
UFUNCTION(BlueprintCallable)
bool DeductCredits(APlayerCharacter* User, UMissionStat* InCreditCounter);
};