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
|
|
|
|
|
|
2017-09-19 21:41:51 +09:00
|
|
|
|
using NUnit.Framework;
|
2019-03-18 16:39:34 +09:00
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-09-19 21:40:57 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-14 22:37:25 +03:00
|
|
|
|
public partial class TestSceneCatchPlayer : PlayerTestScene
|
2017-09-19 21:40:57 +09:00
|
|
|
|
{
|
2020-04-23 13:25:06 +03:00
|
|
|
|
protected override Ruleset CreatePlayerRuleset() => new CatchRuleset();
|
2017-09-19 21:40:57 +09:00
|
|
|
|
}
|
|
|
|
|
}
|