// 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.Objects.Types; namespace osu.Game.Skinning { public class SkinComboColourLookup { /// /// The index to use for deciding the combo colour. /// public readonly int ColourIndex; /// /// The combo information requesting the colour. /// public readonly IHasComboInformation Combo; public SkinComboColourLookup(int colourIndex, IHasComboInformation combo) { ColourIndex = colourIndex; Combo = combo; } } }