Split out test beatmap from TestCasePlayer into instantiable class

This commit is contained in:
smoogipoo
2018-03-12 19:41:09 +09:00
parent d88fb7608f
commit 7406cb290f
7 changed files with 744 additions and 722 deletions

View File

@ -28,16 +28,14 @@ namespace osu.Game.Rulesets.Catch.Tests
{
}
protected override Beatmap CreateBeatmap()
protected override Beatmap CreateBeatmap(Ruleset ruleset)
{
var beatmap = new Beatmap
{
BeatmapInfo = new BeatmapInfo
{
BaseDifficulty = new BeatmapDifficulty
{
CircleSize = 6,
}
BaseDifficulty = new BeatmapDifficulty { CircleSize = 6 },
Ruleset = ruleset.RulesetInfo
}
};