1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:57:19 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/Editor/TestSceneHitCirclePlacementBlueprint.cs

22 lines
830 B
C#
Raw Normal View History

// 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 19:11:57 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-10-25 19:11:57 +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.HitCircles;
2018-10-25 19:11:57 +09:00
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Osu.Tests.Editor
2018-10-25 19:11:57 +09:00
{
2022-11-24 14:32:20 +09:00
public partial class TestSceneHitCirclePlacementBlueprint : PlacementBlueprintTestScene
2018-10-25 19:11:57 +09:00
{
protected override DrawableHitObject CreateHitObject(HitObject hitObject) => new DrawableHitCircle((HitCircle)hitObject);
2018-11-07 15:04:48 +09:00
protected override PlacementBlueprint CreateBlueprint() => new HitCirclePlacementBlueprint();
2018-10-25 19:11:57 +09:00
}
}