Adjust some missed renames

This commit is contained in:
smoogipoo
2018-11-07 15:04:48 +09:00
parent c142b86fd6
commit 4277cb0d59
8 changed files with 11 additions and 11 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Tests.Visual
[BackgroundDependencyLoader]
private void load()
{
base.Content.Add(blueprint = CreateMask());
base.Content.Add(blueprint = CreateBlueprint());
blueprint.SelectionRequested += (_, __) => blueprint.Select();
AddStep("Select", () => blueprint.Select());
@ -42,6 +42,6 @@ namespace osu.Game.Tests.Visual
return true;
}
protected abstract SelectionBlueprint CreateMask();
protected abstract SelectionBlueprint CreateBlueprint();
}
}