Files
XRLib/Assets/Scripts/UVC/UI/Commands/Mono/QuitApplicationCommandMono.cs
2025-06-17 20:19:06 +09:00

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();
}
}
}