Exemplo n.º 1
0
        protected override void ReadInner(BinaryReader reader)
        {
            this.ThumbstickStyle = (ThumbstickStyle)reader.ReadInt32();
            this.GraphicalQuality = (GraphicalQuality) reader.ReadInt32();
            this.LaunchCounts = reader.ReadInt32() + 1;
            this.IsRateWindowShown = reader.ReadBoolean();
            this.IsFirstHelpShown = reader.ReadBoolean();

            // LaunchCounts has changed
            this.HasChanged = true;
        }
Exemplo n.º 2
0
 private void OnThumbstickStyleChanged(ThumbstickStyle thumbstickStyle)
 {
     _settingsManager.Settings.ThumbstickStyle = thumbstickStyle;
 }