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

18 lines
507 B
C#
Raw Normal View History

2023-06-22 16:37:25 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-06-28 08:34:04 +00:00
// See the LICENCE file in the repository root for full licence text.
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
}
}