mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Adjust some missed renames
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user