1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 03:57:25 +08:00
osu-lazer/osu.Game.Tests/Visual/TestCaseDrawableBeatDivisor.cs

26 lines
744 B
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2018-03-19 19:21:03 +08:00
using osu.Game.Screens.Edit.Screens.Compose;
2018-03-19 19:14:46 +08:00
using OpenTK;
namespace osu.Game.Tests.Visual
{
2018-03-19 19:42:42 +08:00
public class TestCaseDrawableBeatDivisor : OsuTestCase
{
[BackgroundDependencyLoader]
private void load()
{
2018-03-20 12:57:25 +08:00
Child = new DrawableBeatDivisor(new BindableBeatDivisor())
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2018-03-19 19:14:46 +08:00
Y = -200,
Size = new Vector2(100, 110)
};
}
}
}