DRG-Femboy-Voice/Source/FSD/Private/AttackCooldownComponent.cpp
2025-04-15 12:39:31 -07:00

19 lines
448 B
C++
Executable file

#include "AttackCooldownComponent.h"
void UAttackCooldownComponent::SetCooldown(const FName& AttackName, float cooldownSeconds) {
}
bool UAttackCooldownComponent::IsAttackOffCooldown(const FName& AttackName) const {
return false;
}
bool UAttackCooldownComponent::IsAnyAttackOffCooldown() const {
return false;
}
void UAttackCooldownComponent::AttackUsed(const FName& Name) {
}
UAttackCooldownComponent::UAttackCooldownComponent() {
}