17 lines
505 B
C++
Executable file
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;
|
|
}
|
|
|