mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
13 lines
297 B
C++
13 lines
297 B
C++
#include "FortTheaterTileEditorData.h"
|
|
|
|
FFortTheaterTileEditorData::FFortTheaterTileEditorData() {
|
|
XCoordinate = 0;
|
|
YCoordinate = 0;
|
|
ZoneTheme = NULL;
|
|
Region = NULL;
|
|
TileType = EFortTheaterMapTileType::Normal;
|
|
bCanBeMissionAlert = false;
|
|
bDisallowQuickplay = false;
|
|
}
|
|
|