Add IHasColumn.

This commit is contained in:
smoogipooo
2017-05-03 12:42:37 +09:00
parent c8e5f8bd95
commit 64c677a29d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Rulesets.Mania.Objects
{
public interface IHasColumn
{
int Column { get; }
}
}