1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 17:37:24 +08:00
osu-lazer/osu.Game/Rulesets/Mods/IToggleableVisibility.cs
Sheepposu 288eed53df new features + improvements
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.
2024-02-10 02:02:26 -05:00

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);
}
}