mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
27 lines
743 B
C#
27 lines
743 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.
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|