Resolve unassigned properties

This commit is contained in:
smoogipoo 2020-01-17 18:52:13 +09:00
parent 2bc7458abf
commit 4fa2c5c8c1
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ private class TestRuleset : Ruleset
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