mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Rename parameter
This commit is contained in:
@ -25,10 +25,10 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
||||
AddInternal(bananaContainer = new Container { RelativeSizeAxes = Axes.Both });
|
||||
}
|
||||
|
||||
protected override void AddNested(DrawableHitObject h)
|
||||
protected override void AddNested(DrawableHitObject hitObject)
|
||||
{
|
||||
base.AddNested(h);
|
||||
bananaContainer.Add(h);
|
||||
base.AddNested(hitObject);
|
||||
bananaContainer.Add(hitObject);
|
||||
}
|
||||
|
||||
protected override void ClearNested()
|
||||
|
@ -25,10 +25,10 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
||||
AddInternal(dropletContainer = new Container { RelativeSizeAxes = Axes.Both, });
|
||||
}
|
||||
|
||||
protected override void AddNested(DrawableHitObject h)
|
||||
protected override void AddNested(DrawableHitObject hitObject)
|
||||
{
|
||||
base.AddNested(h);
|
||||
dropletContainer.Add(h);
|
||||
base.AddNested(hitObject);
|
||||
dropletContainer.Add(hitObject);
|
||||
}
|
||||
|
||||
protected override void ClearNested()
|
||||
|
Reference in New Issue
Block a user