1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 23:17:25 +08:00
osu-lazer/Templates/Rulesets/ruleset-scrolling-example/osu.Game.Rulesets.Pippidon/Mods/PippidonModAutoplay.cs

25 lines
784 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.Online.API.Requests.Responses;
2021-04-05 10:41:40 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Pippidon.Replays;
using osu.Game.Scoring;
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 Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
ScoreInfo = new ScoreInfo
{
User = new APIUser { Username = "sample" },
2021-04-05 10:41:40 +08:00
},
Replay = new PippidonAutoGenerator(beatmap).Generate(),
};
}
}