mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
315 B
C++
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;
|
|
}
|
|
|