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