2021-04-21 14:14:19 +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.Framework.Graphics.Sprites;
|
2022-08-11 03:54:48 +08:00
|
|
|
using osu.Framework.Localisation;
|
2021-04-21 14:14:19 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public abstract class ModClassic : Mod
|
|
|
|
{
|
|
|
|
public override string Name => "Classic";
|
|
|
|
|
|
|
|
public override string Acronym => "CL";
|
|
|
|
|
|
|
|
public override double ScoreMultiplier => 1;
|
|
|
|
|
|
|
|
public override IconUsage? Icon => FontAwesome.Solid.History;
|
|
|
|
|
2022-08-11 03:54:48 +08:00
|
|
|
public override LocalisableString Description => "Feeling nostalgic?";
|
2021-04-21 14:14:19 +08:00
|
|
|
|
|
|
|
public override ModType Type => ModType.Conversion;
|
|
|
|
}
|
|
|
|
}
|