mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 17:37:24 +08:00
288eed53df
Hit & aim markers are skinnable. Hidden can be toggled off. Aim line with skinnable color was added. The fadeout time is based on the approach rate. Cursor hide fixed.
11 lines
244 B
C#
11 lines
244 B
C#
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public interface IToggleableVisibility
|
|
{
|
|
public void ToggleOffVisibility(Playfield playfield);
|
|
|
|
public void ToggleOnVisibility(Playfield playfield);
|
|
}
|
|
} |