2020-10-14 15:46:13 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
|
|
{
|
2021-05-03 15:47:47 +08:00
|
|
|
public class SkinnableComboCounter : SkinnableDrawable
|
2020-10-14 15:46:13 +08:00
|
|
|
{
|
|
|
|
public SkinnableComboCounter()
|
2020-10-15 14:37:40 +08:00
|
|
|
: base(new HUDSkinComponent(HUDSkinComponents.ComboCounter), skinComponent => new DefaultComboCounter())
|
2020-10-14 15:46:13 +08:00
|
|
|
{
|
2020-10-14 16:20:10 +08:00
|
|
|
CentreComponent = false;
|
2020-10-14 15:46:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|