1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 03:07:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneGameplayCursor.cs

29 lines
799 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 17:19:50 +08:00
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Osu.UI.Cursor;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
2019-08-30 12:58:17 +08:00
public class TestSceneGameplayCursor : SkinnableTestScene
2018-04-13 17:19:50 +08:00
{
2019-02-28 12:31:40 +08:00
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(CursorTrail) };
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load()
{
2019-08-30 12:58:17 +08:00
SetContents(() => new OsuCursorContainer
{
RelativeSizeAxes = Axes.Both,
Masking = true,
});
2018-04-13 17:19:50 +08:00
}
}
}