1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Modes/Replays/FramedReplay.cs

15 lines
506 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Game.Input.Handlers;
namespace osu.Game.Modes.Replays
{
public abstract class FramedReplay : Replay
{
protected List<ReplayFrame> Frames = new List<ReplayFrame>();
public override ReplayInputHandler CreateInputHandler() => new FramedReplayInputHandler(Frames);
}
}