Support generic FlowContainer.

This commit is contained in:
Dean Herbert 2016-11-07 21:17:29 +09:00
parent a61fb5ef5d
commit d57d5daac9

View File

@ -8,7 +8,7 @@ namespace osu.Game.Overlays.Options
{ {
public abstract class OptionsSubsection : Container public abstract class OptionsSubsection : Container
{ {
private Container content; private Container<Drawable> content;
protected override Container<Drawable> Content => content; protected override Container<Drawable> Content => content;
protected abstract string Header { get; } protected abstract string Header { get; }