osu/osu.Game.Tests/Visual/Editing/TestScenePlaybackControl.cs

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

38 lines
989 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 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2018-03-02 06:34:31 +00:00
using NUnit.Framework;
2018-03-19 07:27:52 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Beatmaps;
2020-05-22 09:23:24 +00:00
using osu.Game.Screens.Edit;
using osu.Game.Screens.Edit.Components;
2018-11-20 07:51:59 +00:00
using osuTK;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Tests.Visual.Editing
{
2018-03-02 06:34:31 +00:00
[TestFixture]
2022-05-25 14:30:53 +00:00
public class TestScenePlaybackControl : EditorClockTestScene
{
2018-03-19 07:44:46 +00:00
[BackgroundDependencyLoader]
private void load()
{
2020-05-22 09:23:24 +00:00
var clock = new EditorClock { IsCoupled = false };
Dependencies.CacheAs(clock);
2018-04-13 09:19:50 +00:00
2018-03-19 07:27:52 +00:00
var playback = new PlaybackControl
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-02-28 04:31:40 +00:00
Size = new Vector2(200, 100)
};
2018-04-13 09:19:50 +00:00
Beatmap.Value = CreateWorkingBeatmap(new Beatmap());
2018-04-13 09:19:50 +00:00
2018-03-19 07:44:46 +00:00
Child = playback;
}
}
}