Rename method to EquivalentTo

This commit is contained in:
Dean Herbert
2018-07-05 15:00:02 +09:00
parent d11ba2df0e
commit 44aecdc3a0
7 changed files with 18 additions and 19 deletions

View File

@ -15,8 +15,8 @@ namespace osu.Game.Beatmaps.ControlPoints
/// </summary>
public bool OmitFirstBarLine;
public override bool ChangeEquals(ControlPoint other)
=> base.ChangeEquals(other)
public override bool EquivalentTo(ControlPoint other)
=> base.EquivalentTo(other)
&& other is EffectControlPoint effect
&& KiaiMode.Equals(effect.KiaiMode)
&& OmitFirstBarLine.Equals(effect.OmitFirstBarLine);