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

@ -32,7 +32,7 @@ namespace osu.Game.Tests.Visual
[BackgroundDependencyLoader]
private void load()
{
Add(currentBlueprint = CreateMask());
Add(currentBlueprint = CreateBlueprint());
}
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
@ -52,7 +52,7 @@ namespace osu.Game.Tests.Visual
hitObjectContainer.Add(CreateHitObject(hitObject));
Remove(currentBlueprint);
Add(currentBlueprint = CreateMask());
Add(currentBlueprint = CreateBlueprint());
}
public void Delete(HitObject hitObject)
@ -60,6 +60,6 @@ namespace osu.Game.Tests.Visual
}
protected abstract DrawableHitObject CreateHitObject(HitObject hitObject);
protected abstract PlacementBlueprint CreateMask();
protected abstract PlacementBlueprint CreateBlueprint();
}
}