1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Resolve unassigned properties

This commit is contained in:
smoogipoo 2020-01-17 18:52:13 +09:00
parent 2bc7458abf
commit 4fa2c5c8c1

View File

@ -59,8 +59,8 @@ namespace osu.Game.Tests.Online
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => throw new System.NotImplementedException();
public override string Description { get; }
public override string ShortName { get; }
public override string Description { get; } = string.Empty;
public override string ShortName { get; } = string.Empty;
}
private class TestMod : Mod