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

19 lines
461 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EInputKeys.h"
#include "InstantUsable.h"
#include "ShieldBoostUsable.generated.h"
class APlayerCharacter;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UShieldBoostUsable : public UInstantUsable {
GENERATED_BODY()
public:
UShieldBoostUsable();
protected:
UFUNCTION(BlueprintCallable)
void OnCharacterBoosted(APlayerCharacter* User, EInputKeys Key);
};