Files
FNGameProj/Source/FortniteGame/Private/CustomCosmeticCharmModifier.cpp
T
2024-06-07 01:17:09 +02:00

25 lines
613 B
C++

#include "CustomCosmeticCharmModifier.h"
UMeshComponent* ACustomCosmeticCharmModifier::GetSkeletalMeshForAssociatedPlayerPawnCharmType() const {
return NULL;
}
AFortPlayerCharm* ACustomCosmeticCharmModifier::GetCharmOwner() const {
return NULL;
}
TEnumAsByte<EFortCustomCharmType::Type> ACustomCosmeticCharmModifier::GetCharacterCharmType() const {
return EFortCustomCharmType::Weapon;
}
void ACustomCosmeticCharmModifier::ForceResetParticleSystems() {
}
ACustomCosmeticCharmModifier::ACustomCosmeticCharmModifier() {
CharmType = EFortCustomCharmType::NumTypes;
MyCharmOwner = NULL;
}