Files
2026-04-22 15:51:07 +02:00

24 lines
499 B
C++

#include "FortWorldItem.h"
bool UFortWorldItem::SeenInFrontend() const {
return false;
}
void UFortWorldItem::MarkItemAsSeenInFrontend() {
}
void UFortWorldItem::GetOwnedGameplayTags(FGameplayTagContainer& TagContainer) const {
}
int32 UFortWorldItem::GetFuelChargeValue() const {
return 0;
}
UFortWorldItem::UFortWorldItem() {
this->bIsTemporaryItem = false;
this->bNeedsPersistentUpdate = false;
this->bPendingPersistentDelete = false;
this->OwnerInventory = NULL;
}