mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:57:36 +08:00
17 lines
586 B
C#
17 lines
586 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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 ManiaModKey8 : ManiaKeyMod
|
|
{
|
|
public override int KeyCount => 8;
|
|
public override string Name => "Eight Keys";
|
|
public override string ShortenedName => "8K";
|
|
public override FontAwesome Icon => FontAwesome.fa_question;
|
|
public override string Description => @"Play with eight keys.";
|
|
}
|
|
}
|