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

17 lines
505 B
C++
Executable file

#include "PlaceableItem.h"
#include "CapacityHoldingItemAggregator.h"
#include "ItemPlacerAggregator.h"
void APlaceableItem::Server_SpawnItem_Implementation(FVector Location) {
}
void APlaceableItem::OnCarriedAmountChanged(int32 newAmount) {
}
APlaceableItem::APlaceableItem() {
this->Capacity = CreateDefaultSubobject<UCapacityHoldingItemAggregator>(TEXT("Aggregater"));
this->ItemPlacer = CreateDefaultSubobject<UItemPlacerAggregator>(TEXT("ItemPlacer"));
this->PlacableClass = NULL;
}