osu/osu.Game/Rulesets/Replays/AutoGenerator.cs

39 lines
930 B
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps;
2018-11-28 08:20:37 +00:00
using osu.Game.Replays;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Replays
{
2019-03-07 09:30:31 +00:00
public abstract class AutoGenerator : IAutoGenerator
2018-04-13 09:19:50 +00:00
{
/// <summary>
/// Creates the auto replay and returns it.
/// Every subclass of OsuAutoGeneratorBase should implement this!
/// </summary>
public abstract Replay Generate();
#region Parameters
/// <summary>
/// The beatmap we're making.
/// </summary>
2019-03-07 09:30:31 +00:00
protected IBeatmap Beatmap;
2018-04-13 09:19:50 +00:00
#endregion
2019-03-07 09:30:31 +00:00
protected AutoGenerator(IBeatmap beatmap)
2018-04-13 09:19:50 +00:00
{
Beatmap = beatmap;
}
#region Constants
// Shared amongst all modes
protected const double KEY_UP_DELAY = 50;
#endregion
}
}