mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
12 lines
301 B
C++
12 lines
301 B
C++
#include "OutpostPOSTRequirementData.h"
|
|
|
|
UOutpostPOSTRequirementData::UOutpostPOSTRequirementData() {
|
|
this->RequirementItemDefinition = NULL;
|
|
this->TotalRequired = -1;
|
|
this->AlreadyDeposited = -1;
|
|
this->AmountOwned = -1;
|
|
this->bHasEnough = false;
|
|
this->AmountToDeposit = 0;
|
|
}
|
|
|