osu/osu.Game.Rulesets.Catch.Tests/TestSceneDrawableHitObjectsHidden.cs

20 lines
523 B
C#
Raw Normal View History

2019-06-28 08:34:04 +00: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.
2022-06-17 07:37:17 +00:00
#nullable disable
using NUnit.Framework;
2019-06-28 08:34:04 +00:00
using osu.Game.Rulesets.Catch.Mods;
namespace osu.Game.Rulesets.Catch.Tests
{
2022-11-24 05:32:20 +00:00
public partial class TestSceneDrawableHitObjectsHidden : TestSceneDrawableHitObjects
2019-06-28 08:34:04 +00:00
{
[SetUp]
public void SetUp() => Schedule(() =>
2019-06-28 08:34:04 +00:00
{
2019-12-13 12:45:38 +00:00
SelectedMods.Value = new[] { new CatchModHidden() };
});
2019-06-28 08:34:04 +00:00
}
}