mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:57:25 +08:00
24 lines
548 B
C#
24 lines
548 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 GlobalSkinLookup : ISkinLookup
|
||
|
{
|
||
|
public readonly LookupType Lookup;
|
||
|
|
||
|
public string LookupName => Lookup.ToString();
|
||
|
|
||
|
public GlobalSkinLookup(LookupType lookup)
|
||
|
{
|
||
|
Lookup = lookup;
|
||
|
}
|
||
|
|
||
|
public enum LookupType
|
||
|
{
|
||
|
MainHUDComponents,
|
||
|
SongSelect
|
||
|
}
|
||
|
}
|
||
|
}
|