8 lines
205 B
C++
Executable file
8 lines
205 B
C++
Executable file
#include "RoomGeneratorBase.h"
|
|
|
|
URoomGeneratorBase::URoomGeneratorBase() {
|
|
this->Bounds = 0.00f;
|
|
this->CanOnlyBeUsedOnce = false;
|
|
this->MirrorSupport = ERoomMirroringSupport::MirrorAroundX;
|
|
}
|
|
|