Make ModelInfo and abstract class constructor protected

- Implementing classes would be better off exposing it if necessary under a different name
This commit is contained in:
naoey
2019-06-12 00:47:02 +05:30
parent 7495bc5d3a
commit ba6546038c
2 changed files with 2 additions and 4 deletions

View File

@ -11,7 +11,7 @@ namespace osu.Game.Overlays.Direct
{
public Bindable<BeatmapSetInfo> BeatmapSet => ModelInfo;
public BeatmapDownloadTrackingComposite(BeatmapSetInfo set = null)
protected BeatmapDownloadTrackingComposite(BeatmapSetInfo set = null)
: base(set)
{
}