mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
29 lines
762 B
C#
29 lines
762 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class SkinComboColourLookup
|
|
{
|
|
/// <summary>
|
|
/// The index to use for deciding the combo colour.
|
|
/// </summary>
|
|
public readonly int ColourIndex;
|
|
|
|
/// <summary>
|
|
/// The combo information requesting the colour.
|
|
/// </summary>
|
|
public readonly IHasComboInformation Combo;
|
|
|
|
public SkinComboColourLookup(int colourIndex, IHasComboInformation combo)
|
|
{
|
|
ColourIndex = colourIndex;
|
|
Combo = combo;
|
|
}
|
|
}
|
|
}
|