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

11 lines
186 B
C++

#include "BuildingFloor.h"
bool ABuildingFloor::IsBalcony() const {
return false;
}
ABuildingFloor::ABuildingFloor() {
this->bShouldIgnoreForHorizontalHotspotSearch = true;
}