1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 12:17:46 +08:00
osu-lazer/osu.Game/Input/GlobalAction.cs

24 lines
675 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
2017-08-09 16:21:44 +08:00
namespace osu.Game.Input
{
2017-08-10 16:22:08 +08:00
public enum GlobalAction
{
[Description("Toggle chat overlay")]
ToggleChat,
[Description("Toggle social overlay")]
2017-08-10 15:45:10 +08:00
ToggleSocial,
[Description("Reset input settings")]
2017-08-10 15:45:10 +08:00
ResetInputSettings,
[Description("Toggle toolbar")]
2017-08-10 15:45:10 +08:00
ToggleToolbar,
[Description("Toggle settings")]
2017-08-10 15:45:10 +08:00
ToggleSettings,
[Description("Toggle osu!direct")]
ToggleDirect,
}
}