mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:47:38 +08:00
22 lines
652 B
C#
22 lines
652 B
C#
// 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
|
|
{
|
|
public enum SpecialColumnPosition
|
|
{
|
|
/// <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
|
|
}
|
|
}
|