mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +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:
@ -86,7 +86,14 @@ namespace osu.Game.Graphics.UserInterface
|
||||
}
|
||||
}
|
||||
|
||||
protected float textSize = 20.0f;
|
||||
public void Set(T value)
|
||||
{
|
||||
Count = value;
|
||||
}
|
||||
|
||||
public abstract void Increment(T amount);
|
||||
|
||||
protected float textSize;
|
||||
|
||||
public float TextSize
|
||||
{
|
||||
@ -107,6 +114,8 @@ namespace osu.Game.Graphics.UserInterface
|
||||
{
|
||||
DisplayedCountSpriteText = new SpriteText(),
|
||||
};
|
||||
|
||||
TextSize = 40;
|
||||
}
|
||||
|
||||
public override void Load(BaseGame game)
|
||||
|
Reference in New Issue
Block a user