mirror of
https://github.com/ppy/osu
synced 2024-12-12 01:48:49 +00: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 ManiaModKey7 : ManiaKeyMod
|
|
{
|
|
public override int KeyCount => 7;
|
|
public override string Name => "Seven Keys";
|
|
public override string ShortenedName => "7K";
|
|
public override FontAwesome Icon => FontAwesome.fa_question;
|
|
public override string Description => @"Play with seven keys.";
|
|
}
|
|
}
|