1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +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;
public LegacyJudgementPiece(HitResult result, Drawable texture)
public LegacyJudgementPiece(HitResult result, Drawable drawable)
{
this.result = result;
AutoSizeAxes = Axes.Both;
Origin = Anchor.Centre;
InternalChild = texture;
InternalChild = drawable;
}
public virtual void PlayAnimation()