// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.Rulesets.Mania.UI { public enum SpecialColumnPosition { /// /// The special column will lie in the center of the columns. /// Normal, /// /// The special column will lie to the left of the columns. /// Left, /// /// The special column will lie to the right of the columns. /// Right } }