r2mods/ilspy_dump/ror2_csproj/RoR2.UI/UILayerKeyProxy.cs

14 lines
208 B
C#

using UnityEngine;
namespace RoR2.UI;
public class UILayerKeyProxy : MonoBehaviour, IUILayerKeyProvider
{
public UILayerKey ProxiedLayer;
public UILayerKey GetUILayerKey()
{
return ProxiedLayer;
}
}