mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
635 B
C++
16 lines
635 B
C++
#include "FortItemCraftedParams.h"
|
|
|
|
void UFortItemCraftedParams::SetParams(const UFortSchematicItemDefinition* _SchematicDefinition, AFortPlayerController* _CraftedBy, int32 _AmountCrafted, bool _bItemWasQuickCrafted, UFortItemCraftedParams*& ThisParam) {
|
|
}
|
|
|
|
void UFortItemCraftedParams::BreakParams(UFortSchematicItemDefinition*& _SchematicDefinition, AFortPlayerController*& _CraftedBy, int32& _AmountCrafted, bool& _bItemWasQuickCrafted) {
|
|
}
|
|
|
|
UFortItemCraftedParams::UFortItemCraftedParams() {
|
|
this->SchematicDefinition = NULL;
|
|
this->CraftedBy = NULL;
|
|
this->AmountCrafted = 0;
|
|
this->bItemWasQuickCrafted = false;
|
|
}
|
|
|