mirror of
https://github.com/ppy/osu
synced 2024-12-11 09:27:08 +00:00
17 lines
582 B
C#
17 lines
582 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 ManiaModKey2 : ManiaKeyMod
|
|
{
|
|
public override int KeyCount => 2;
|
|
public override string Name => "Two Keys";
|
|
public override string ShortenedName => "2K";
|
|
public override FontAwesome Icon => FontAwesome.fa_question;
|
|
public override string Description => @"Play with two keys.";
|
|
}
|
|
}
|