mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
408 B
C++
17 lines
408 B
C++
#include "FortItemEntry.h"
|
|
|
|
FFortItemEntry::FFortItemEntry() {
|
|
this->Count = 0;
|
|
this->PreviousCount = 0;
|
|
this->ItemDefinition = NULL;
|
|
this->Durability = 0.00f;
|
|
this->Level = 0;
|
|
this->LoadedAmmo = 0;
|
|
this->inventory_overflow_date = false;
|
|
this->bWasGifted = false;
|
|
this->bIsReplicatedCopy = false;
|
|
this->bIsDirty = false;
|
|
this->bUpdateStatsOnCollection = false;
|
|
}
|
|
|