2023-06-13 22:22:27 +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.
|
|
|
|
|
2023-06-26 21:19:01 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2023-09-04 16:43:23 +08:00
|
|
|
using osu.Game.Rulesets.Scoring.Legacy;
|
2023-06-13 22:22:27 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Difficulty
|
|
|
|
{
|
2023-07-04 16:32:54 +08:00
|
|
|
internal class ManiaLegacyScoreSimulator : ILegacyScoreSimulator
|
2023-06-13 22:22:27 +08:00
|
|
|
{
|
2023-09-04 16:43:23 +08:00
|
|
|
public LegacyScoreAttributes Simulate(IWorkingBeatmap workingBeatmap, IBeatmap playableBeatmap)
|
2023-06-13 22:22:27 +08:00
|
|
|
{
|
2023-09-04 16:43:23 +08:00
|
|
|
return new LegacyScoreAttributes { ComboScore = 1000000 };
|
2023-06-13 22:22:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|