mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:57:36 +08:00
26 lines
741 B
C#
26 lines
741 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.
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class LegacyManiaSkinConfigurationLookup
|
|
{
|
|
public readonly int Keys;
|
|
public readonly LegacyManiaSkinConfigurationLookups Lookup;
|
|
public readonly int? TargetColumn;
|
|
|
|
public LegacyManiaSkinConfigurationLookup(int keys, LegacyManiaSkinConfigurationLookups lookup, int? targetColumn = null)
|
|
{
|
|
Keys = keys;
|
|
Lookup = lookup;
|
|
TargetColumn = targetColumn;
|
|
}
|
|
}
|
|
|
|
public enum LegacyManiaSkinConfigurationLookups
|
|
{
|
|
KeyImage,
|
|
KeyImageDown
|
|
}
|
|
}
|