Files
FNGameProj/Source/FortniteGame/Private/MeshSet.cpp
T
2024-01-21 00:41:14 +01:00

18 lines
476 B
C++

#include "MeshSet.h"
FMeshSet::FMeshSet() {
this->Weight = 0.00f;
this->ResourceType = EFortResourceType::Wood;
this->bDoNotBlockBuildings = false;
this->bDestroyOnPlayerBuildingPlacement = false;
this->bNeedsDamageOverlay = false;
this->BaseMesh = NULL;
this->BreakEffect = NULL;
this->DeathParticles = NULL;
this->DeathSound = NULL;
this->ConstructedEffect = NULL;
this->SearchedMesh = NULL;
this->LootNoiseRange = 0.00f;
}