Fix errors.

This commit is contained in:
Dean Herbert
2017-04-14 20:17:17 +09:00
parent ed3956eca5
commit 52ddc414d5
3 changed files with 2 additions and 8 deletions

View File

@ -2,8 +2,6 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Transforms;
using osu.Framework.MathUtils;
@ -15,7 +13,7 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public class SimpleComboCounter : RollingCounter<int>
{
protected override Type TransformType => typeof(TransformCount);
protected override Type TransformType => typeof(TransformCounterCount);
protected override double RollingDuration => 750;
@ -39,7 +37,7 @@ namespace osu.Game.Graphics.UserInterface
Current.Value = Current + amount;
}
protected class TransformCount : Transform<int>
private class TransformCounterCount : Transform<int>
{
public override int CurrentValue
{