2019-01-24 17:43:03 +09:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-10-29 18:35:46 +09:00
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2018-10-29 18:35:46 +09:00
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-11-07 16:08:56 +09:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners;
|
2018-10-29 18:35:46 +09:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
2020-09-25 18:48:04 +09:00
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
2018-10-29 18:35:46 +09:00
|
|
|
{
|
2019-05-14 22:37:25 +03:00
|
|
|
public class TestSceneSpinnerPlacementBlueprint : PlacementBlueprintTestScene
|
2018-10-29 18:35:46 +09:00
|
|
|
{
|
|
|
|
protected override DrawableHitObject CreateHitObject(HitObject hitObject) => new DrawableSpinner((Spinner)hitObject);
|
|
|
|
|
2018-11-07 15:04:48 +09:00
|
|
|
protected override PlacementBlueprint CreateBlueprint() => new SpinnerPlacementBlueprint();
|
2018-10-29 18:35:46 +09:00
|
|
|
}
|
|
|
|
}
|