osu/osu.Game/Graphics/UserInterface/ScoreCounter.cs

25 lines
675 B
C#
Raw Normal View History

2016-10-07 07:24:46 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2016-10-07 07:05:02 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Graphics.UserInterface
{
public class ScoreCounter : ULongCounter
{
/// <summary>
/// How many leading zeroes the counter will have.
/// </summary>
public uint LeadingZeroes = 0;
protected override string formatCount(ulong count)
{
return count.ToString("D" + LeadingZeroes);
}
}
}