1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-16 05:52:57 +08:00
osu-lazer/osu.Game/Overlays/OverlayActivation.cs
Aergwyn 2b3a630270 add OverlayActivation enum
+ fix Toolbar being toggleable when it shouldn't be able to
+ allow opening overlays in MenuState.Initial again
2018-05-28 13:43:47 +02:00

13 lines
339 B
C#

// Copyright (c) 2007-2018 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 OverlayActivation
{
Disabled,
//UserTriggered, // currently there is no way to discern user action
All
}
}