2019-01-24 17:43:03 +09: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-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
2020-09-24 14:46:03 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-09-24 14:46:03 +09:00
|
|
|
|
public class TestSceneOsuEditor : EditorTestScene
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-06-04 00:47:10 +03:00
|
|
|
|
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|