mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
449 B
C++
15 lines
449 B
C++
#include "FortGameFeatureStatus.h"
|
|
|
|
FFortGameFeatureStatus::FFortGameFeatureStatus() {
|
|
this->Feature = EFortGameFeature::EarlyStartup;
|
|
this->CurrentState = EFortGameFeatureState::Unknown;
|
|
this->RequestedState = EFortGameFeatureState::Unknown;
|
|
this->Progress = 0.00f;
|
|
this->bIsProgressPaused = false;
|
|
this->CurrentBundleNum = 0;
|
|
this->TotalNumBundles = 0;
|
|
this->IsActive = false;
|
|
this->IsPendingActive = false;
|
|
}
|
|
|