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
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-03-12 19:38:23 +09:00
|
|
|
|
using NUnit.Framework;
|
2018-03-13 15:57:05 +09:00
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-09-24 14:46:03 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
2018-03-12 19:38:23 +09:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-09-24 14:46:03 +09:00
|
|
|
|
public class TestSceneOsuEditor : EditorTestScene
|
2018-03-12 19:38:23 +09:00
|
|
|
|
{
|
2020-06-04 00:47:10 +03:00
|
|
|
|
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
|
2018-03-12 19:38:23 +09:00
|
|
|
|
}
|
|
|
|
|
}
|