14 lines
208 B
C#
14 lines
208 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2.UI;
|
||
|
|
||
|
public class UILayerKeyProxy : MonoBehaviour, IUILayerKeyProvider
|
||
|
{
|
||
|
public UILayerKey ProxiedLayer;
|
||
|
|
||
|
public UILayerKey GetUILayerKey()
|
||
|
{
|
||
|
return ProxiedLayer;
|
||
|
}
|
||
|
}
|