2021-07-26 08:40:50 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-07-26 08:40:50 +08:00
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public abstract class ModMirror : Mod
|
|
|
|
{
|
|
|
|
public override string Name => "Mirror";
|
|
|
|
public override string Acronym => "MR";
|
|
|
|
public override ModType Type => ModType.Conversion;
|
2021-07-26 09:26:21 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2021-07-26 08:40:50 +08:00
|
|
|
}
|
|
|
|
}
|