Files
BusyRabbit/Source/BusyRabbit/Public/Core/PW_AbilitySystemComponent.h
2025-07-09 01:08:35 +08:00

21 lines
495 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "AbilitySystemComponent.h"
#include "PW_AbilitySystemComponent.generated.h"
/**
*
*/
UCLASS()
class BUSYRABBIT_API UPW_AbilitySystemComponent : public UAbilitySystemComponent
{
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, DisplayName = "技能的Effect配置")
TMap<FName, TSubclassOf<UGameplayEffect>> AbilityEffectConfigs;
};