19 lines
461 B
C++
Executable file
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);
|
|
|
|
};
|
|
|