Files
2026-04-22 15:51:07 +02:00

19 lines
315 B
C++

#include "BuildingWeakSpot.h"
void ABuildingWeakSpot::Deactivate() {
}
ABuildingWeakSpot::ABuildingWeakSpot() {
this->bHit = false;
this->bFadeOut = false;
this->bActive = false;
this->HitCount = 0;
this->Level = 0;
this->MaxLevel = 7;
this->PhysicalSurfaceType = SurfaceType12;
}