mirror of
https://github.com/ppy/osu.git
synced 2025-01-16 05:52:57 +08:00
2b3a630270
+ fix Toolbar being toggleable when it shouldn't be able to + allow opening overlays in MenuState.Initial again
13 lines
339 B
C#
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
|
|
}
|
|
}
|