2018-04-13 17:19:50 +08: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.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
2018-09-21 14:08:43 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
|
{
|
|
|
|
|
public class OsuEditRulesetContainer : OsuRulesetContainer
|
|
|
|
|
{
|
2018-05-07 10:38:41 +08:00
|
|
|
|
public OsuEditRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
|
2018-05-07 09:17:54 +08:00
|
|
|
|
: base(ruleset, beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override CursorContainer CreateCursor() => null;
|
2018-09-21 14:08:43 +08:00
|
|
|
|
|
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield { Size = Vector2.One };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|