2018-10-25 17:48:11 +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.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2018-11-07 15:08:56 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles;
|
2018-10-25 17:48:11 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-10-25 17:48:11 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
2018-11-06 17:06:13 +08:00
|
|
|
public class TestCaseHitCircleSelectionBlueprint : SelectionBlueprintTestCase
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
private readonly DrawableHitCircle drawableObject;
|
|
|
|
|
2018-11-06 17:06:13 +08:00
|
|
|
public TestCaseHitCircleSelectionBlueprint()
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
var hitCircle = new HitCircle { Position = new Vector2(256, 192) };
|
|
|
|
hitCircle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = 2 });
|
|
|
|
|
|
|
|
Add(drawableObject = new DrawableHitCircle(hitCircle));
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:04:48 +08:00
|
|
|
protected override SelectionBlueprint CreateBlueprint() => new HitCircleSelectionBlueprint(drawableObject);
|
2018-10-25 17:48:11 +08:00
|
|
|
}
|
|
|
|
}
|