1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Drop "default" prefix

This commit is contained in:
smoogipoo 2021-10-04 20:34:08 +09:00
parent 5aae673240
commit 221cc1747c
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ using osuTK;
namespace osu.Game.Screens.Play.HUD
{
public class DefaultPerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
public class PerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
{
public bool UsesFixedAnchor { get; set; }
@ -43,7 +43,7 @@ namespace osu.Game.Screens.Play.HUD
private TimedDifficultyAttributes[] timedAttributes;
private Ruleset gameplayRuleset;
public DefaultPerformancePointsCounter()
public PerformancePointsCounter()
{
Current.Value = DisplayedCount = 0;
}

View File

@ -68,7 +68,7 @@ namespace osu.Game.Skinning
var score = container.OfType<DefaultScoreCounter>().FirstOrDefault();
var accuracy = container.OfType<DefaultAccuracyCounter>().FirstOrDefault();
var combo = container.OfType<DefaultComboCounter>().FirstOrDefault();
var ppCounter = container.OfType<DefaultPerformancePointsCounter>().FirstOrDefault();
var ppCounter = container.OfType<PerformancePointsCounter>().FirstOrDefault();
if (score != null)
{
@ -131,7 +131,7 @@ namespace osu.Game.Skinning
new SongProgress(),
new BarHitErrorMeter(),
new BarHitErrorMeter(),
new DefaultPerformancePointsCounter()
new PerformancePointsCounter()
}
};