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

21 lines
449 B
C++
Executable file

#include "BoscoAbillityComponent.h"
int32 UBoscoAbillityComponent::GetMaxCharges(bool Total) const {
return 0;
}
bool UBoscoAbillityComponent::GetIsSet() const {
return false;
}
int32 UBoscoAbillityComponent::GetCharges() const {
return 0;
}
UBoscoAbillityComponent::UBoscoAbillityComponent() {
this->ProjectileClass = NULL;
this->StreamClass = NULL;
this->AbilityData = NULL;
this->InitializeAtBeginPlay = false;
}