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

15 lines
540 B
C++

#include "FortItemDroppedParams.h"
void UFortItemDroppedParams::SetParams(const UFortWorldItemDefinition* _DroppedItemDefinition, AFortPlayerController* _DroppedBy, int32 _AmountCollected, UFortItemDroppedParams*& ThisParam) {
}
void UFortItemDroppedParams::BreakParams(UFortWorldItemDefinition*& _DroppedItemDefinition, AFortPlayerController*& _DroppedBy, int32& _AmountCollected) {
}
UFortItemDroppedParams::UFortItemDroppedParams() {
this->DroppedItemDefinition = NULL;
this->DroppedBy = NULL;
this->AmountDropped = 0;
}