Start to structure flow of information in Player.

- Allow basic clicking of hitobjects.
- Break non-osu! game modes temporarily.
- Fix some issues with RollingCounters.
- Add the ability to increment counters.
This commit is contained in:
Dean Herbert
2016-10-19 19:44:03 +09:00
parent e78e0d37b4
commit 43f0409893
19 changed files with 303 additions and 92 deletions

View File

@ -49,6 +49,11 @@ namespace osu.Game.Graphics.UserInterface
return count.ToString("D" + LeadingZeroes);
}
public override void Increment(ulong amount)
{
Count = Count + amount;
}
protected class TransformScore : Transform<ulong>
{
public override ulong CurrentValue