mirror of
https://github.com/ppy/osu.git
synced 2025-01-16 08:52:57 +08:00
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
|
|||
|
}
|
|||
|
}
|