Naming adjustments

This commit is contained in:
Andrei Zavatski
2020-01-18 03:40:31 +03:00
parent d5a3d8dbaa
commit 16cfb9310b
5 changed files with 13 additions and 13 deletions

View File

@ -19,8 +19,8 @@ namespace osu.Game.Tests.Visual.Online
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ProfileScore),
typeof(ProfileWeightedScore),
typeof(DrawableProfileScore),
typeof(DrawableProfileWeightedScore),
typeof(ProfileItemBackground),
};
@ -74,9 +74,9 @@ namespace osu.Game.Tests.Visual.Online
Spacing = new Vector2(0, 10),
Children = new[]
{
new ProfileScore(score),
new ProfileScore(noPPScore),
new ProfileWeightedScore(score, 0.85),
new DrawableProfileScore(score),
new DrawableProfileScore(noPPScore),
new DrawableProfileWeightedScore(score, 0.85),
}
});
}