// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Rulesets.Mania.UI; namespace osu.Game.Rulesets.Mania.Beatmaps { /// /// Defines properties for each grouping of s in a . /// public struct GroupDefinition { /// /// The number of s which this grouping contains. /// public int Columns; } }