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:
parent
5aae673240
commit
221cc1747c
@ -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;
|
||||
}
|
@ -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()
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user