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.

27 lines
715 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
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.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 partial class TestScenePlaybackControl : EditorClockTestScene
{
2018-03-19 07:44:46 +00:00
[BackgroundDependencyLoader]
private void load()
{
Child = new PlaybackControl
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-02-28 04:31:40 +00:00
Size = new Vector2(200, 100)
};
}
}
}