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

30 lines
926 B
C#
Raw Normal View History

2019-11-23 17:34:53 +00: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;
2019-11-23 17:34:53 +00:00
using osu.Game.Beatmaps;
using osu.Game.Online.API.Requests.Responses;
2019-11-23 17:34:53 +00:00
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Replays;
using osu.Game.Rulesets.Mods;
using osu.Game.Scoring;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModCinema : ModCinema<CatchHitObject>
{
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
2019-11-23 17:34:53 +00:00
{
ScoreInfo = new ScoreInfo
{
User = new APIUser
{
Id = APIUser.SYSTEM_USER_ID,
Username = "osu!salad"
}
},
2019-11-23 17:34:53 +00:00
Replay = new CatchAutoGenerator(beatmap).Generate(),
};
}
}