mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 06:27:24 +09:00
18 lines
482 B
C#
18 lines
482 B
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public enum Visibility
|
|
{
|
|
Hidden,
|
|
Visible
|
|
}
|
|
|
|
public static class OverlayVisibilityHelper
|
|
{
|
|
public static Visibility Reverse(this Visibility input)
|
|
=> input == Visibility.Visible ? Visibility.Hidden : Visibility.Visible;
|
|
}
|
|
}
|