1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 15:17:31 +08:00
osu-lazer/Templates/Rulesets/ruleset-example/osu.Game.Rulesets.Pippidon/Mods/PippidonModAutoplay.cs

17 lines
623 B
C#
Raw Normal View History

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
{
public override ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods)
=> new ModReplayData(new PippidonAutoGenerator(beatmap).Generate(), new ModCreatedReplayUser { Username = "sample" });
2021-04-05 10:41:40 +08:00
}
}