14 lines
406 B
C++
Executable file
14 lines
406 B
C++
Executable file
#include "BeastMasterComponent.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
void UBeastMasterComponent::SetDamage(UDamageComponent* cmp, float dmg) {
|
|
}
|
|
|
|
UActorComponent* UBeastMasterComponent::AddPetComponent(TSubclassOf<UActorComponent> ComponentClass, AFSDPawn* targetPet, APlayerCharacter* petOwner) {
|
|
return NULL;
|
|
}
|
|
|
|
UBeastMasterComponent::UBeastMasterComponent() {
|
|
this->ShowCanCharmIcon = false;
|
|
}
|
|
|