mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 09:57:21 +09: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
|
namespace osu.Game.Screens.Play.HUD
|
||||||
{
|
{
|
||||||
public class DefaultPerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
|
public class PerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
|
||||||
{
|
{
|
||||||
public bool UsesFixedAnchor { get; set; }
|
public bool UsesFixedAnchor { get; set; }
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
private TimedDifficultyAttributes[] timedAttributes;
|
private TimedDifficultyAttributes[] timedAttributes;
|
||||||
private Ruleset gameplayRuleset;
|
private Ruleset gameplayRuleset;
|
||||||
|
|
||||||
public DefaultPerformancePointsCounter()
|
public PerformancePointsCounter()
|
||||||
{
|
{
|
||||||
Current.Value = DisplayedCount = 0;
|
Current.Value = DisplayedCount = 0;
|
||||||
}
|
}
|
@ -68,7 +68,7 @@ namespace osu.Game.Skinning
|
|||||||
var score = container.OfType<DefaultScoreCounter>().FirstOrDefault();
|
var score = container.OfType<DefaultScoreCounter>().FirstOrDefault();
|
||||||
var accuracy = container.OfType<DefaultAccuracyCounter>().FirstOrDefault();
|
var accuracy = container.OfType<DefaultAccuracyCounter>().FirstOrDefault();
|
||||||
var combo = container.OfType<DefaultComboCounter>().FirstOrDefault();
|
var combo = container.OfType<DefaultComboCounter>().FirstOrDefault();
|
||||||
var ppCounter = container.OfType<DefaultPerformancePointsCounter>().FirstOrDefault();
|
var ppCounter = container.OfType<PerformancePointsCounter>().FirstOrDefault();
|
||||||
|
|
||||||
if (score != null)
|
if (score != null)
|
||||||
{
|
{
|
||||||
@ -131,7 +131,7 @@ namespace osu.Game.Skinning
|
|||||||
new SongProgress(),
|
new SongProgress(),
|
||||||
new BarHitErrorMeter(),
|
new BarHitErrorMeter(),
|
||||||
new BarHitErrorMeter(),
|
new BarHitErrorMeter(),
|
||||||
new DefaultPerformancePointsCounter()
|
new PerformancePointsCounter()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user