1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Merge branch 'control-point-grouping' into no-auto-gen

This commit is contained in:
Dean Herbert 2019-10-26 01:20:08 +09:00
commit b52be3d639

View File

@ -240,6 +240,13 @@ namespace osu.Game.Beatmaps.ControlPoints
}
}
public void Clear() => groups.Clear();
public void Clear()
{
groups.Clear();
timingPoints.Clear();
difficultyPoints.Clear();
samplePoints.Clear();
effectPoints.Clear();
}
}
}