2018-01-09 04:41:57 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-03-14 03:07:03 +00:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
2018-01-09 04:41:57 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
|
|
|
{
|
|
|
|
|
public class ManiaModKey1 : ManiaKeyMod
|
|
|
|
|
{
|
|
|
|
|
public override int KeyCount => 1;
|
2018-03-14 03:07:03 +00:00
|
|
|
|
public override string Name => "One Key";
|
|
|
|
|
public override string ShortenedName => "1K";
|
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_question;
|
|
|
|
|
public override string Description => @"Play with one key.";
|
2018-01-09 04:41:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|