-- | The type of key-command mappings to be used for the UI. module Game.LambdaHack.Client.UI.Content.KeyKind ( KeyKind(..) ) where import qualified Game.LambdaHack.Client.Key as K import Game.LambdaHack.Client.UI.HumanCmd -- | Key-command mappings to be used for the UI. data KeyKind = KeyKind { rhumanCommands :: ![(K.KM, ([CmdCategory], HumanCmd))] -- ^ default client UI commands }