1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/IManiaHitObjectComposer.cs

16 lines
388 B
C#
Raw Normal View History

2018-11-12 18:41:06 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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
int TotalColumns { get; }
2018-11-12 18:41:06 +08:00
}
}