2025-10-17 17:13:13 -04:00
|
|
|
// Copyright Echo Devgroup
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "Abilities/GameplayAbility.h"
|
|
|
|
|
#include "AuraGameplayAbility.generated.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
UCLASS()
|
|
|
|
|
class AURA_API UAuraGameplayAbility : public UGameplayAbility
|
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
UPROPERTY(EditDefaultsOnly, Category = "Input")
|
|
|
|
|
FGameplayTag StartupInputTag;
|
2025-10-18 11:28:42 -04:00
|
|
|
|
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Ability Params")
|
2025-10-19 15:04:11 -04:00
|
|
|
float Damage;
|
2025-10-18 11:28:42 -04:00
|
|
|
|
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Ability Params")
|
|
|
|
|
float Level;
|
2025-10-17 17:13:13 -04:00
|
|
|
};
|