mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user