2017-05-03 18:38:15 +08:00
|
|
|
|
// 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.UI
|
|
|
|
|
{
|
2017-05-04 13:46:10 +08:00
|
|
|
|
public enum SpecialColumnPosition
|
2017-05-03 18:38:15 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The special column will lie in the center of the columns.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Normal,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The special column will lie to the left of the columns.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Left,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The special column will lie to the right of the columns.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Right
|
|
|
|
|
}
|
|
|
|
|
}
|