mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
24 lines
702 B
C#
24 lines
702 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
|
||
|
{
|
||
|
}
|
||
|
}
|