9 lines
236 B
C++
Executable file
9 lines
236 B
C++
Executable file
#include "RoomEntrance.h"
|
|
|
|
FRoomEntrance::FRoomEntrance() {
|
|
this->IsBLocked = false;
|
|
this->EntranceType = ECaveEntranceType::EntranceAndExit;
|
|
this->Priority = ECaveEntrancePriority::Primary;
|
|
this->PathObstacleID = 0;
|
|
}
|
|
|