1
0
mirror of https://github.com/ppy/osu synced 2025-03-19 17:44:30 +00:00

Standardise naming

This commit is contained in:
smoogipoo 2018-05-11 15:42:34 +09:00
parent 5245d2d426
commit bfad101d17
13 changed files with 13 additions and 13 deletions

View File

@ -14,6 +14,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Mania
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertManiaHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -7,7 +7,7 @@ using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
public class ConvertManiaHitWindows : HitWindows
public class ConvertHitWindows : HitWindows
{
private static readonly IReadOnlyDictionary<HitResult, (double od0, double od5, double od10)> base_ranges = new Dictionary<HitResult, (double, double, double)>
{

View File

@ -13,6 +13,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Mania
public double Duration => EndTime - StartTime;
protected override HitWindows CreateHitWindows() => new ConvertManiaHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -14,6 +14,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Mania
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertManiaHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -16,6 +16,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Mania
public float X { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertManiaHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -19,6 +19,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Osu
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertOsuHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -7,7 +7,7 @@ using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Objects.Legacy.Osu
{
public class ConvertOsuHitWindows : HitWindows
public class ConvertHitWindows : HitWindows
{
private static readonly IReadOnlyDictionary<HitResult, (double od0, double od5, double od10)> base_ranges = new Dictionary<HitResult, (double, double, double)>
{

View File

@ -19,6 +19,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Osu
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertOsuHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -21,6 +21,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Osu
public float Y => Position.Y;
protected override HitWindows CreateHitWindows() => new ConvertOsuHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -12,6 +12,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Taiko
{
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertTaikoHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -7,7 +7,7 @@ using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Objects.Legacy.Taiko
{
public class ConvertTaikoHitWindows : HitWindows
public class ConvertHitWindows : HitWindows
{
private static readonly IReadOnlyDictionary<HitResult, (double od0, double od5, double od10)> base_ranges = new Dictionary<HitResult, (double, double, double)>
{

View File

@ -12,6 +12,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Taiko
{
public bool NewCombo { get; set; }
protected override HitWindows CreateHitWindows() => new ConvertTaikoHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}

View File

@ -14,6 +14,6 @@ namespace osu.Game.Rulesets.Objects.Legacy.Taiko
public double Duration => EndTime - StartTime;
protected override HitWindows CreateHitWindows() => new ConvertTaikoHitWindows();
protected override HitWindows CreateHitWindows() => new ConvertHitWindows();
}
}