1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 20:23:00 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/IManiaHitObjectComposer.cs

16 lines
389 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;
using OpenTK;
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
}
}