This commit is contained in:
Adonais Romero González
2016-10-15 15:03:51 -05:00
parent c268500f89
commit a15f4cda44
5 changed files with 6 additions and 9 deletions

View File

@ -1,7 +1,6 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Transformations;
using osu.Framework.MathUtils;
@ -40,11 +39,6 @@ namespace osu.Game.Graphics.UserInterface
LeadingZeroes = leading;
}
public override void Load(BaseGame game)
{
base.Load(game);
}
protected override double GetProportionalDuration(ulong currentValue, ulong newValue)
{
return currentValue > newValue ? currentValue - newValue : newValue - currentValue;