using UnityEngine;
namespace Chernobyl.Unity
{
///
/// Gives access to calls from the Unity Editor.
///
[CreateAssetMenu]
public class Application : ScriptableObject
{
///
/// See for more info.
///
public void Quit() => UnityEngine.Application.Quit();
}
}