osu/osu.Game.Rulesets.Catch/Mods/CatchModAutoplay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
608 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 System.Collections.Generic;
2018-01-12 09:35:28 +00:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Replays;
using osu.Game.Rulesets.Mods;
2018-04-13 09:19:50 +00:00
2018-01-12 09:35:28 +00:00
namespace osu.Game.Rulesets.Catch.Mods
{
2021-05-25 09:09:24 +00:00
public class CatchModAutoplay : ModAutoplay
2018-01-12 09:35:28 +00:00
{
public override ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods)
=> new ModReplayData(new CatchAutoGenerator(beatmap).Generate(), new ModCreatedUser { Username = "osu!salad" });
2018-01-12 09:35:28 +00:00
}
}