// Copyright (c) 2007-2017 ppy Pty Ltd . // 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 Frames = new List(); public override ReplayInputHandler CreateInputHandler() => new FramedReplayInputHandler(Frames); } }