Files
FNGameProj/Source/FortniteGame/Private/MeshSet.cpp
T
2024-03-03 23:44:39 +01:00

18 lines
468 B
C++

#include "MeshSet.h"
FMeshSet::FMeshSet() {
this->Weight = 1;
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 = 1;
}