1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 00:53:22 +08:00

Rename param to match type better

This commit is contained in:
Bartłomiej Dach 2020-11-17 20:12:04 +01:00
parent 875d7dec79
commit 57eaee27ae

View File

@ -14,14 +14,14 @@ namespace osu.Game.Skinning
{ {
private readonly HitResult result; private readonly HitResult result;
public LegacyJudgementPiece(HitResult result, Drawable texture) public LegacyJudgementPiece(HitResult result, Drawable drawable)
{ {
this.result = result; this.result = result;
AutoSizeAxes = Axes.Both; AutoSizeAxes = Axes.Both;
Origin = Anchor.Centre; Origin = Anchor.Centre;
InternalChild = texture; InternalChild = drawable;
} }
public virtual void PlayAnimation() public virtual void PlayAnimation()