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
|
|
|
|
{
|
2023-02-15 17:31:55 +08:00
|
|
|
public class SkinComponentsContainerLookup : ISkinComponentLookup
|
2022-11-09 15:03:29 +08:00
|
|
|
{
|
2023-02-15 17:31:55 +08:00
|
|
|
public readonly TargetArea Target;
|
2022-11-09 15:03:29 +08:00
|
|
|
|
2023-02-15 17:31:55 +08:00
|
|
|
public SkinComponentsContainerLookup(TargetArea target)
|
2022-11-09 15:03:29 +08:00
|
|
|
{
|
2023-02-15 17:31:55 +08:00
|
|
|
Target = target;
|
2022-11-09 15:03:29 +08:00
|
|
|
}
|
|
|
|
|
2023-02-15 17:31:55 +08:00
|
|
|
public enum TargetArea
|
2022-11-09 15:03:29 +08:00
|
|
|
{
|
|
|
|
MainHUDComponents,
|
|
|
|
SongSelect
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|