14 lines
286 B
C#
14 lines
286 B
C#
|
|
using UVC.UI.Commands.Mono;
|
||
|
|
|
||
|
|
namespace UVC.Studio.Modal.Settings
|
||
|
|
{
|
||
|
|
public class SettingOpenCommandMono : MonoBehaviourCommand
|
||
|
|
{
|
||
|
|
public override void Execute()
|
||
|
|
{
|
||
|
|
var command = new SettingOpenCommand();
|
||
|
|
command.Execute();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|