2022-11-09 15:03:29 +08:00
|
|
|
// 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
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
public class GlobalSkinComponentLookup : ISkinComponentLookup
|
2022-11-09 15:03:29 +08:00
|
|
|
{
|
|
|
|
public readonly LookupType Lookup;
|
|
|
|
|
2022-11-09 15:04:56 +08:00
|
|
|
public GlobalSkinComponentLookup(LookupType lookup)
|
2022-11-09 15:03:29 +08:00
|
|
|
{
|
|
|
|
Lookup = lookup;
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum LookupType
|
|
|
|
{
|
|
|
|
MainHUDComponents,
|
|
|
|
SongSelect
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|