mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
540 B
C++
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;
|
|
}
|
|
|