mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 06:42:54 +08:00
18 lines
421 B
C#
18 lines
421 B
C#
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|||
|
|
|||
|
using NUnit.Framework;
|
|||
|
using osu.Game.Tests.Visual;
|
|||
|
|
|||
|
namespace osu.Game.Rulesets.Mania.Tests
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestCaseEditor : EditorTestCase
|
|||
|
{
|
|||
|
public TestCaseEditor()
|
|||
|
: base(new ManiaRuleset())
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|