2017-08-09 16:10:32 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using OpenTK.Input;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2017-08-09 16:21:44 +08:00
|
|
|
namespace osu.Game.Input
|
2017-08-09 16:10:32 +08:00
|
|
|
{
|
|
|
|
public class GlobalActionMappingInputManager : ActionMappingInputManager<OsuAction>
|
|
|
|
{
|
2017-08-09 16:21:44 +08:00
|
|
|
protected override IDictionary<Key, OsuAction> CreateDefaultMappings() => new Dictionary<Key, OsuAction>
|
2017-08-09 16:10:32 +08:00
|
|
|
{
|
|
|
|
{ Key.F8, OsuAction.ToggleChat },
|
|
|
|
{ Key.F9, OsuAction.ToggleSocial },
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|