1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:17:18 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneHitCircleHidden.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
501 B
C#
Raw Normal View History

// 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
2018-03-02 15:34:31 +09:00
using NUnit.Framework;
2018-01-01 11:55:24 +01:00
using osu.Game.Rulesets.Osu.Mods;
2018-04-13 18:19:50 +09:00
2018-01-01 11:55:24 +01:00
namespace osu.Game.Rulesets.Osu.Tests
{
2018-03-02 15:34:31 +09:00
[TestFixture]
public partial class TestSceneHitCircleHidden : TestSceneHitCircle
2018-01-01 11:55:24 +01:00
{
[SetUp]
public void SetUp() => Schedule(() =>
2018-01-01 11:55:24 +01:00
{
2019-12-13 21:45:38 +09:00
SelectedMods.Value = new[] { new OsuModHidden() };
});
2018-01-01 11:55:24 +01:00
}
}