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

21 lines
423 B
C++
Executable file

#include "ClipBasedItemAggregator.h"
void UClipBasedItemAggregator::ReloadStarted() {
}
void UClipBasedItemAggregator::ReloadComplete() {
}
int32 UClipBasedItemAggregator::GetTotalAmount() const {
return 0;
}
int32 UClipBasedItemAggregator::GetClipAmount() const {
return 0;
}
UClipBasedItemAggregator::UClipBasedItemAggregator() {
this->ShowTotalAmount = true;
this->ShowClipAndTotalAsOne = false;
}