1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 06:00:25 +08:00

Make Mod.Description abstract and add missing descriptions

This commit is contained in:
Dean Herbert
2021-04-15 14:32:01 +09:00
Unverified
parent 7654df94f6
commit 346e36d32a
10 changed files with 19 additions and 1 deletions
@@ -57,6 +57,8 @@ namespace osu.Game.Tests.Visual.UserInterface
private abstract class TestMod : Mod, IApplicableMod
{
public override double ScoreMultiplier => 1.0;
public override string Description => "This is a test mod.";
}
}
}