1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 13:22:55 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Tests/TestCaseFruit.cs
2017-12-01 13:10:51 +09:00

37 lines
1.2 KiB
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Objects.Drawable;
using osu.Game.Tests.Visual;
using OpenTK;
namespace osu.Game.Rulesets.Catch.Tests
{
public class TestCaseFruit : OsuTestCase
{
public TestCaseFruit()
{
Add(new GridContainer
{
RelativeSizeAxes = Axes.Both,
Content = new[]
{
new Drawable[]
{
new DrawableFruit(new Fruit()) { Position = new Vector2(0.5f) },
new DrawableFruit(new Fruit()) { Position = new Vector2(0.5f) },
},
new Drawable[]
{
new DrawableFruit(new Fruit()) { Position = new Vector2(0.5f) },
new DrawableFruit(new Fruit()) { Position = new Vector2(0.5f) },
}
}
});
}
}
}