osu/osu.Game.Rulesets.Taiko/Replays/TaikoFramedReplayInputHandl...

20 lines
688 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-03-31 07:20:31 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Replays;
2017-03-31 07:20:31 +00:00
using System.Collections.Generic;
using osu.Framework.Input;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Taiko.Replays
2017-03-31 07:20:31 +00:00
{
internal class TaikoFramedReplayInputHandler : FramedReplayInputHandler<TaikoReplayFrame>
2017-03-31 07:20:31 +00:00
{
public TaikoFramedReplayInputHandler(Replay replay)
: base(replay)
{
}
public override List<InputState> GetPendingStates() => new List<InputState> { new ReplayState<TaikoAction> { PressedActions = CurrentFrame.Actions } };
2017-03-31 07:20:31 +00:00
}
}