1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Skinning/SkinComboColourLookup.cs
2021-05-05 07:06:26 +03:00

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;
}
}
}