Create "AutoGenerator" base class and interface.

This commit is contained in:
Thomas Tan
2017-04-29 02:08:48 +08:00
parent 2af6c7aa00
commit 9b8b88601f
10 changed files with 125 additions and 89 deletions

View File

@ -96,7 +96,7 @@ namespace osu.Game.Rulesets.Osu.Mods
protected override Score CreateReplayScore(Beatmap<OsuHitObject> beatmap) => new Score
{
Replay = new OsuAutoReplay(beatmap)
Replay = new OsuAutoGenerator(beatmap).Generate()
};
}