Files
BITKit/Src/Unity/Scripts/UX/Command/UXEntryPanelCommand.cs
2023-09-02 00:51:39 +08:00

18 lines
364 B
C#

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);
}
}
}