// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Mania.UI; using osu.Game.Skinning; namespace osu.Game.Rulesets.Mania.Skinning { public class ManiaSkinConfigurationLookup { /// /// The configuration lookup value. /// public readonly LegacyManiaSkinConfigurationLookups Lookup; /// /// The intended index for the configuration. /// May be null if the configuration does not apply to a . /// public readonly int? TargetColumn; /// /// Creates a new . /// /// The lookup value. /// The intended index for the configuration. May be null if the configuration does not apply to a . public ManiaSkinConfigurationLookup(LegacyManiaSkinConfigurationLookups lookup, int? targetColumn = null) { Lookup = lookup; TargetColumn = targetColumn; } } }