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

24 lines
626 B
C++
Executable file

#include "ArmorVanityItem.h"
void UArmorVanityItem::SetNewArmorType(UCharacterVanityComponent* Gear) {
}
void UArmorVanityItem::PreviewArmor(AFSDPlayerState* PlayerState, bool Show, bool useDefaultArmorMaterial) const {
}
bool UArmorVanityItem::HasSleevelessArmorType() const {
return false;
}
EArmorMeshType UArmorVanityItem::GetFPMeshType() const {
return EArmorMeshType::None;
}
UArmorVanityItem::UArmorVanityItem() {
this->AllowSleevelessUse = true;
this->CropBeard = false;
this->ArmorThickness = 0.00f;
this->CanOnlyUseDefaultArmorMaterial = false;
this->DefaultArmorMaterial = NULL;
}