1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Resolve inspections

This commit is contained in:
Dan Balasescu 2022-03-15 09:16:39 +09:00
parent 3a6d254d1f
commit ca62560495

View File

@ -184,8 +184,8 @@ namespace osu.Game.Skinning.Editor
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => throw new NotImplementedException();
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => throw new NotImplementedException();
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => throw new NotImplementedException();
public override string Description { get; }
public override string ShortName { get; }
public override string Description => string.Empty;
public override string ShortName => string.Empty;
}
}
}