2019-01-24 16:43:03 +08: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-11-12 18:41:06 +08:00
|
|
|
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-11-26 09:44:48 +08:00
|
|
|
using osuTK;
|
2018-11-12 18:41:06 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
|
|
{
|
|
|
|
public interface IManiaHitObjectComposer
|
|
|
|
{
|
|
|
|
Column ColumnAt(Vector2 screenSpacePosition);
|
2018-11-15 20:37:22 +08:00
|
|
|
|
2020-05-14 17:34:51 +08:00
|
|
|
ManiaPlayfield Playfield { get; }
|
2018-11-12 18:41:06 +08:00
|
|
|
}
|
|
|
|
}
|