Update framework.

This commit is contained in:
smoogipooo
2017-06-21 11:18:52 +09:00
parent c8720bc5d5
commit fc0e44b214
12 changed files with 17 additions and 15 deletions

View File

@ -205,7 +205,7 @@ namespace osu.Game.Screens.Play.HUD
Transforms.Add(transform);
}
protected class TransformComboRoll : Transform<int>
protected class TransformComboRoll : Transform<int, Drawable>
{
public override int CurrentValue
{

View File

@ -34,7 +34,7 @@ namespace osu.Game.Screens.Play.HUD
Current.Value = Current + amount;
}
protected class TransformComboResult : Transform<ulong>
protected class TransformComboResult : Transform<ulong, Drawable>
{
public override ulong CurrentValue
{

View File

@ -308,7 +308,7 @@ namespace osu.Game.Screens.Tournament
Scrolling
}
public class TransformScrollSpeed : TransformFloat
public class TransformScrollSpeed : TransformFloat<Drawable>
{
public override void Apply(Drawable d)
{