mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
26 lines
756 B
C++
26 lines
756 B
C++
#include "FortSaveFileBuildingInstructionsHandler.h"
|
|
|
|
bool AFortSaveFileBuildingInstructionsHandler::SaveBuildings(AFortPlayerController* FortPC) {
|
|
return false;
|
|
}
|
|
|
|
bool AFortSaveFileBuildingInstructionsHandler::ResetBuildings() {
|
|
return false;
|
|
}
|
|
|
|
void AFortSaveFileBuildingInstructionsHandler::LoadBuildings(AFortPlayerController* FortPC) {
|
|
}
|
|
|
|
bool AFortSaveFileBuildingInstructionsHandler::AreBuildingsLoaded() {
|
|
return false;
|
|
}
|
|
|
|
AFortSaveFileBuildingInstructionsHandler::AFortSaveFileBuildingInstructionsHandler() {
|
|
this->bUseAbsoluteCoordinates = true;
|
|
this->bTrackDestroyedBuildings = false;
|
|
this->bLoadInvisible = false;
|
|
this->bDespawnOnBuildingsSpawned = false;
|
|
this->bSpawnBuildingsAutomaticallyAfterLoad = true;
|
|
}
|
|
|