mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 02:27:25 +08:00
25 lines
675 B
C#
25 lines
675 B
C#
//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;
|
|
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);
|
|
}
|
|
}
|
|
}
|