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

19 lines
513 B
C++
Executable file

#include "ArmorPiece.h"
#include "Templates/SubclassOf.h"
#include "UpgradableGearComponent.h"
TSubclassOf<AActor> AArmorPiece::GetWeaponViewClass() const {
return NULL;
}
AArmorPiece* AArmorPiece::GetArmorPieceDefaultObject(TSubclassOf<AArmorPiece> armorPieceClass) {
return NULL;
}
AArmorPiece::AArmorPiece() {
this->Upgradable = CreateDefaultSubobject<UUpgradableGearComponent>(TEXT("Upgradable"));
this->LoadoutProxy = NULL;
this->ItemID = NULL;
this->WeaponPreviewClass = NULL;
}