Fix CI issues + slight change

This commit is contained in:
KingLuigi4932
2019-06-17 22:33:27 +03:00
parent fec0db8fe1
commit d6a39b8a2a
4 changed files with 22 additions and 6 deletions

View File

@ -19,7 +19,10 @@ namespace osu.Game.Users.Drawables
set => Model = value;
}
public UpdateableFlag(Country country = null) => Country = country;
public UpdateableFlag(Country country = null)
{
Country = country;
}
protected override Drawable CreateDrawable(Country country) => new DrawableFlag(country)
{
@ -33,7 +36,10 @@ namespace osu.Game.Users.Drawables
public string TooltipText => country?.FullName;
public DrawableFlag(Country country) => this.country = country;
public DrawableFlag(Country country)
{
this.country = country;
}
[BackgroundDependencyLoader]
private void load(TextureStore ts)