mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
39 lines
985 B
C++
39 lines
985 B
C++
#include "FortCreativePublishOptions.h"
|
|
|
|
void UFortCreativePublishOptions::UpdateTimeSinceLastBackup(FDateTime LastBackup) {
|
|
}
|
|
|
|
void UFortCreativePublishOptions::UpdatePermissions(EFortCreativePlotPermission Permissions) {
|
|
}
|
|
|
|
void UFortCreativePublishOptions::RestoreMyIslandFromBackup() {
|
|
}
|
|
|
|
void UFortCreativePublishOptions::ResetMyCurrentCreativePlot() {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UFortCreativePublishOptions::CheckpointSaveStateChanged(EBackupSaveState SaveState) {
|
|
}
|
|
|
|
void UFortCreativePublishOptions::CheckpointRestoreStateChanged(EBackupSaveState SaveState) {
|
|
}
|
|
|
|
void UFortCreativePublishOptions::BackupMyIsland() {
|
|
}
|
|
|
|
UFortCreativePublishOptions::UFortCreativePublishOptions() {
|
|
this->CurrentPermissionsEnum = EFortCreativePlotPermission::Private;
|
|
this->IslandPublishBox = NULL;
|
|
this->IslandRestoreBox = NULL;
|
|
this->CheckpointBox = NULL;
|
|
this->SaveComponent = NULL;
|
|
this->Text_RestoreTime = NULL;
|
|
this->Text_OnCooldown = NULL;
|
|
this->Button_Restore = NULL;
|
|
}
|
|
|