CreateMaskFor -> CreateBlueprintFor

This commit is contained in:
smoogipoo
2018-11-06 18:03:21 +09:00
parent 90c813618a
commit 11be820efe
4 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ namespace osu.Game.Rulesets.Osu.Edit
protected override Container CreateLayerContainer() => new PlayfieldAdjustmentContainer { RelativeSizeAxes = Axes.Both };
public override SelectionBlueprint CreateMaskFor(DrawableHitObject hitObject)
public override SelectionBlueprint CreateBlueprintFor(DrawableHitObject hitObject)
{
switch (hitObject)
{
@ -49,7 +49,7 @@ namespace osu.Game.Rulesets.Osu.Edit
return new SpinnerSelectionBlueprint(spinner);
}
return base.CreateMaskFor(hitObject);
return base.CreateBlueprintFor(hitObject);
}
}
}