mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 10:47:22 +09:00
25 lines
881 B
C#
25 lines
881 B
C#
// 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.
|
|
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests.Editor
|
|
{
|
|
public class TestSceneNoteSelectionBlueprint : ManiaSelectionBlueprintTestScene
|
|
{
|
|
public TestSceneNoteSelectionBlueprint()
|
|
{
|
|
var note = new Note { Column = 0 };
|
|
note.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
|
|
var drawableHitObject = new DrawableNote(note);
|
|
Playfield.Add(drawableHitObject);
|
|
AddBlueprint(new NoteSelectionBlueprint(note), drawableHitObject);
|
|
}
|
|
}
|
|
}
|