2025-06-12 19:25:33 +09:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
using UVC.Log;
|
|
|
|
|
|
|
|
|
|
|
|
namespace UVC.UI.Commands.Mono
|
|
|
|
|
|
{
|
|
|
|
|
|
public class QuitApplicationCommandMono : MonoBehaviourCommand
|
|
|
|
|
|
{
|
2025-06-17 20:19:06 +09:00
|
|
|
|
public override void Execute()
|
2025-06-12 19:25:33 +09:00
|
|
|
|
{
|
|
|
|
|
|
new QuitApplicationCommand().Execute();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|