Embed behaviour into UserCoverBackground

This commit is contained in:
smoogipoo
2020-07-28 20:50:55 +09:00
parent 54d2f2c8cd
commit 42e88c53d7
5 changed files with 22 additions and 18 deletions

View File

@ -41,7 +41,7 @@ namespace osu.Game.Overlays.Profile
Masking = true,
Children = new Drawable[]
{
coverContainer = new UserCoverBackground
coverContainer = new ProfileCoverBackground
{
RelativeSizeAxes = Axes.Both,
},
@ -100,5 +100,10 @@ namespace osu.Game.Overlays.Profile
IconTexture = "Icons/profile";
}
}
private class ProfileCoverBackground : UserCoverBackground
{
protected override double LoadDelay => 0;
}
}
}