mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
273 B
C++
19 lines
273 B
C++
#include "BuildingWeakSpot.h"
|
|
|
|
|
|
|
|
|
|
void ABuildingWeakSpot::Deactivate() {
|
|
}
|
|
|
|
ABuildingWeakSpot::ABuildingWeakSpot() {
|
|
bHit = false;
|
|
bFadeOut = false;
|
|
bActive = false;
|
|
HitCount = 0;
|
|
Level = 0;
|
|
MaxLevel = 0;
|
|
PhysicalSurfaceType = SurfaceType12;
|
|
}
|
|
|