15 lines
287 B
C#
15 lines
287 B
C#
using UnityEngine;
|
|
using UVC.Log;
|
|
|
|
namespace UVC.UI.Commands.Mono
|
|
{
|
|
public class QuitApplicationCommandMono : MonoBehaviourCommand
|
|
{
|
|
public override void Execute(object parameter = null)
|
|
{
|
|
new QuitApplicationCommand().Execute();
|
|
}
|
|
}
|
|
|
|
}
|