mirror of
https://github.com/osukey/osukey.git
synced 2025-05-24 23:17:25 +09:00
19 lines
599 B
C#
19 lines
599 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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<OsuAction>
|
|
{
|
|
protected override IDictionary<Key, OsuAction> CreateDefaultMappings() => new Dictionary<Key, OsuAction>()
|
|
{
|
|
{ Key.F8, OsuAction.ToggleChat },
|
|
{ Key.F9, OsuAction.ToggleSocial },
|
|
};
|
|
}
|
|
}
|