2019-01-24 08:43:03 +00: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-25 10:11:57 +00:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-11-07 07:08:56 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles;
|
2018-10-25 10:11:57 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
2020-09-25 09:48:04 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
2018-10-25 10:11:57 +00:00
|
|
|
|
{
|
2019-05-14 19:37:25 +00:00
|
|
|
|
public partial class TestSceneHitCirclePlacementBlueprint : PlacementBlueprintTestScene
|
2018-10-25 10:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
protected override DrawableHitObject CreateHitObject(HitObject hitObject) => new DrawableHitCircle((HitCircle)hitObject);
|
2024-09-23 14:33:36 +00:00
|
|
|
|
protected override HitObjectPlacementBlueprint CreateBlueprint() => new HitCirclePlacementBlueprint();
|
2018-10-25 10:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|