2019-01-31 10:51:40 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
|
|
|
public class OsuModTouchDevice : Mod
|
|
|
|
{
|
|
|
|
public override string Name => "Touch Device";
|
|
|
|
public override string Acronym => "TD";
|
2021-04-15 13:32:01 +08:00
|
|
|
public override string Description => "Automatically applied to plays on devices with a touchscreen.";
|
2019-01-31 10:51:40 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2019-01-31 10:59:36 +08:00
|
|
|
|
2019-07-23 12:11:06 +08:00
|
|
|
public override ModType Type => ModType.System;
|
2019-01-31 10:51:40 +08:00
|
|
|
}
|
|
|
|
}
|