2018-03-19 18:46:26 +08:00
|
|
|
|
// 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;
|
2018-03-19 18:46:26 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
2018-03-19 19:42:42 +08:00
|
|
|
|
public class TestCaseDrawableBeatDivisor : OsuTestCase
|
2018-03-19 18:46:26 +08:00
|
|
|
|
{
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-03-20 12:57:25 +08:00
|
|
|
|
Child = new DrawableBeatDivisor(new BindableBeatDivisor())
|
2018-03-19 18:46:26 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
2018-03-19 18:49:46 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
2018-03-19 19:14:46 +08:00
|
|
|
|
Y = -200,
|
|
|
|
|
Size = new Vector2(100, 110)
|
2018-03-19 18:46:26 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|