2019-01-24 16:43:03 +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.
|
2018-05-22 14:03:47 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-05-22 14:03:47 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
|
|
|
{
|
2021-04-26 13:33:30 +08:00
|
|
|
|
public partial class ManiaEditorPlayfield : ManiaPlayfield
|
2018-05-22 14:03:47 +08:00
|
|
|
|
{
|
2021-04-26 13:33:30 +08:00
|
|
|
|
public ManiaEditorPlayfield(List<StageDefinition> stages)
|
2018-07-17 15:46:48 +08:00
|
|
|
|
: base(stages)
|
2018-05-22 14:03:47 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|