mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
566 B
C++
15 lines
566 B
C++
#include "FortItemCollectedParams.h"
|
|
|
|
void UFortItemCollectedParams::SetParams(const UFortWorldItemDefinition* _CollectedItemDefinition, AFortPlayerController* _CollectedBy, int32 _AmountCollected, UFortItemCollectedParams*& ThisParam) {
|
|
}
|
|
|
|
void UFortItemCollectedParams::BreakParams(UFortWorldItemDefinition*& _CollectedItemDefinition, AFortPlayerController*& _CollectedBy, int32& _AmountCollected) {
|
|
}
|
|
|
|
UFortItemCollectedParams::UFortItemCollectedParams() {
|
|
this->CollectedItemDefinition = NULL;
|
|
this->CollectedBy = NULL;
|
|
this->AmountCollected = 0;
|
|
}
|
|
|