// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Graphics; namespace osu.Game.Rulesets.Mania.Mods { public class ManiaModKey6 : ManiaKeyMod { public override int KeyCount => 6; public override string Name => "Six Keys"; public override string ShortenedName => "6K"; public override FontAwesome Icon => FontAwesome.fa_question; public override string Description => @"Play with six keys."; } }