Remove necessity of AutoGenerated flag

This commit is contained in:
Dean Herbert
2019-10-25 19:58:42 +09:00
parent e987db37ec
commit 8baf569f59
5 changed files with 55 additions and 29 deletions

View File

@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
@ -12,11 +12,6 @@ namespace osu.Game.Beatmaps.ControlPoints
/// </summary>
public double Time => controlPointGroup?.Time ?? 0;
/// <summary>
/// Whether this timing point was generated internally, as opposed to parsed from the underlying beatmap.
/// </summary>
internal bool AutoGenerated;
private ControlPointGroup controlPointGroup;
public void AttachGroup(ControlPointGroup pointGroup) => this.controlPointGroup = pointGroup;