mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 16:52:56 +08:00
27 lines
693 B
C#
27 lines
693 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
using OpenTK;
|
|
|
|
namespace osu.Desktop.Tests.Visual
|
|
{
|
|
internal class TestCaseCatcher : OsuTestCase
|
|
{
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new CatcherArea
|
|
{
|
|
RelativePositionAxes = Axes.Both,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
Size = new Vector2(1, 0.2f),
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|