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

25 lines
753 B
C#
Raw Normal View History

2018-04-13 09:19:50 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Replays;
using osu.Game.Rulesets.Mods;
2018-11-28 07:12:57 +00:00
using osu.Game.Scoring;
2018-04-13 09:19:50 +00:00
using osu.Game.Users;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModAutoplay : ModAutoplay<CatchHitObject>
{
2018-11-28 09:33:01 +00:00
protected override ScoreInfo CreateReplayScore(Beatmap<CatchHitObject> beatmap)
2018-04-13 09:19:50 +00:00
{
2018-11-28 09:33:01 +00:00
return new ScoreInfo
2018-04-13 09:19:50 +00:00
{
User = new User { Username = "osu!salad!" },
Replay = new CatchAutoGenerator(beatmap).Generate(),
};
}
}
}