Files
EnglewoodLAB/Assets/Scripts/UVC/UI/Commands/Mono/QuitApplicationCommandMono.cs

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