mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
12 lines
288 B
C++
12 lines
288 B
C++
#include "BuildingRequirements.h"
|
|
|
|
FBuildingRequirements::FBuildingRequirements() {
|
|
this->RequiredAccountLevel = 0;
|
|
this->CurrentAccountLevel = 0;
|
|
this->RequiredPower = 0;
|
|
this->CurrentPower = 0;
|
|
this->RequiredManufacturing = 0;
|
|
this->CurrentManufacturing = 0;
|
|
}
|
|
|