using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit.UX.Commands { [Serializable] public class EntryPanel : IAction { [SerializeField] private MonoBehaviour monoBehaviour; public void Execute() { UXService.Entry(monoBehaviour as IUXPanel); } } }