Update naming

This commit is contained in:
Dean Herbert
2020-07-22 19:53:45 +09:00
parent 798bf05038
commit 2c62b23d85
6 changed files with 11 additions and 20 deletions

View File

@ -18,9 +18,9 @@ namespace osu.Game.Rulesets.Mania.Replays
protected override bool IsImportant(ManiaReplayFrame frame) => frame.Actions.Any();
public override void GetPendingInputs(List<IInput> input)
public override void CollectPendingInputs(List<IInput> inputs)
{
input.Add(new ReplayState<ManiaAction> { PressedActions = CurrentFrame?.Actions ?? new List<ManiaAction>() });
inputs.Add(new ReplayState<ManiaAction> { PressedActions = CurrentFrame?.Actions ?? new List<ManiaAction>() });
}
}
}