18 lines
364 B
C#
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);
|
||
|
}
|
||
|
}
|
||
|
}
|