mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
394 B
C++
14 lines
394 B
C++
#include "FortTheaterInfo.h"
|
|
|
|
UFortTheaterInfo::UFortTheaterInfo() {
|
|
this->SaveVersion = 1;
|
|
this->bForceIncludeInCookIfReferenced = false;
|
|
this->SelectedZoneTheme = NULL;
|
|
this->SelectedZoneRegion = NULL;
|
|
this->SelectedTileType = EFortTheaterMapTileType::Normal;
|
|
this->bCanSelectedTileHaveMissionAlert = false;
|
|
this->TheaterWidth = 5;
|
|
this->TheaterHeight = 5;
|
|
}
|
|
|