24 lines
614 B
C++
24 lines
614 B
C++
// Copyright Echo Devgroup
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "AbilitySystemComponent.h"
|
|
#include "AuraAbilitySystemComponent.generated.h"
|
|
|
|
DECLARE_MULTICAST_DELEGATE_OneParam(FEffectAssetTags, const FGameplayTagContainer& /*AssetTags*/);
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class AURA_API UAuraAbilitySystemComponent : public UAbilitySystemComponent
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
void AbilityActorInfoSet();
|
|
FEffectAssetTags EffectAssetTags;
|
|
protected:
|
|
void EffectApplied(UAbilitySystemComponent* AbilitySystemComponent, const FGameplayEffectSpec& EffectSpec, FActiveGameplayEffectHandle ActiveEffectHandle);
|
|
};
|