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

24 lines
551 B
C++
Executable file

#include "CoolDownItemAggregator.h"
void UCoolDownItemAggregator::SetPaused(bool IsPaused) {
}
bool UCoolDownItemAggregator::IsCoolingDown() const {
return false;
}
float UCoolDownItemAggregator::GetCoolDownProgress() const {
return 0.0f;
}
void UCoolDownItemAggregator::ActivateCoolDown(bool startPaused) {
}
UCoolDownItemAggregator::UCoolDownItemAggregator() {
this->CooldownDuration = 2.00f;
this->AudioCoolDownFinished = NULL;
this->CooldownRemaining = 0.00f;
this->CoolDownIsPaused = false;
this->Item = NULL;
}