mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
670 B
C++
20 lines
670 B
C++
#include "FortFocusedBuildingInfo.h"
|
|
|
|
FFortFocusedBuildingInfo::FFortFocusedBuildingInfo() {
|
|
this->bIsInteractable = false;
|
|
this->bCanBePlayerEdited = false;
|
|
this->HealthDisplayRule = EFortBuildingHealthDisplayRule::Never;
|
|
this->MaxHealth = 0.00f;
|
|
this->bIsAnyTrapAttached = false;
|
|
this->bIsTrapAttachedFacingPlayer = false;
|
|
this->bIsPreviewTrapAttached = false;
|
|
this->AttachedTrapMaxDurability = 0.00f;
|
|
this->CurrentLevel = 0;
|
|
this->InteractionType = EFortBuildingInteraction::None;
|
|
this->InteractionCost = 0;
|
|
this->UpgradeBonus = 0;
|
|
this->BuildingMaterial = EFortResourceType::Wood;
|
|
this->bIsHostile = false;
|
|
}
|
|
|