2021-04-05 10:41:40 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Pippidon.Replays;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Pippidon.Mods
|
|
|
|
|
{
|
2021-05-25 17:09:24 +08:00
|
|
|
|
public class PippidonModAutoplay : ModAutoplay
|
2021-04-05 10:41:40 +08:00
|
|
|
|
{
|
2022-03-29 15:59:03 +08:00
|
|
|
|
public override ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods)
|
2022-03-31 10:34:23 +08:00
|
|
|
|
=> new ModReplayData(new PippidonAutoGenerator(beatmap).Generate(), new ModCreatedUser { Username = "sample" });
|
2021-04-05 10:41:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|