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

18 lines
415 B
C++
Executable file

#include "CarriableComponent.h"
bool UCarriableComponent::PickupItem(APlayerCharacter* byCharacter) {
return false;
}
void UCarriableComponent::DropItem() {
}
void UCarriableComponent::AttachChanged(bool Attached, const FVector PrevScale) {
}
UCarriableComponent::UCarriableComponent() {
this->OverrideCarryAnimationSet = NULL;
this->OverrideThrowAnimationSet = NULL;
this->CarriedBy = NULL;
}