AcManager.Pages.Drive.QuickDrive_Drift.ViewModel.ViewModel C# (CSharp) Méthode

ViewModel() public méthode

public ViewModel ( bool initialize = true ) : System.ComponentModel
initialize bool
Résultat System.ComponentModel
            public ViewModel(bool initialize = true) {
                Saveable = new SaveHelper<SaveableData>("__QuickDrive_Drift", () => new SaveableData {
                    Penalties = Penalties,
                    StartType = SelectedStartType.Value
                }, o => {
                    Penalties = o.Penalties;
                    SelectedStartType = Game.StartType.Values.FirstOrDefault(x => x.Value == o.StartType) ?? Game.StartType.Pit;
                }, () => {
                    Penalties = true;
                    SelectedStartType = Game.StartType.Pit;
                });

                if (initialize) {
                    Saveable.Initialize();
                } else {
                    Saveable.Reset();
                }
            }
QuickDrive_Drift.ViewModel