1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:03:11 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/IManiaHitObjectComposer.cs
2018-11-12 19:41:06 +09:00

14 lines
354 B
C#

// 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);
}
}