osu/osu.Game.Rulesets.Taiko/UI/TaikoReplayRecorder.cs

24 lines
743 B
C#
Raw Normal View History

2020-03-24 05:55:49 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Game.Rulesets.Replays;
using osu.Game.Rulesets.Taiko.Replays;
using osu.Game.Rulesets.UI;
using osu.Game.Scoring;
2020-03-24 05:55:49 +00:00
using osuTK;
namespace osu.Game.Rulesets.Taiko.UI
{
2022-11-24 05:32:20 +00:00
public partial class TaikoReplayRecorder : ReplayRecorder<TaikoAction>
2020-03-24 05:55:49 +00:00
{
public TaikoReplayRecorder(Score score)
: base(score)
2020-03-24 05:55:49 +00:00
{
}
protected override ReplayFrame HandleFrame(Vector2 mousePosition, List<TaikoAction> actions, ReplayFrame previousFrame) =>
2020-03-24 05:55:49 +00:00
new TaikoReplayFrame(Time.Current, actions.ToArray());
}
}