// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Input; using OpenTK.Input; using System.Collections.Generic; namespace osu.Game { public class GlobalActionMappingInputManager : ActionMappingInputManager { protected override IDictionary CreateDefaultMappings() => new Dictionary() { { Key.F8, OsuAction.ToggleChat }, { Key.F9, OsuAction.ToggleSocial }, }; } }