Files

18 lines
338 B
C#
Raw Permalink Normal View History

2022-01-15 23:38:48 +01:00
using UnityEngine;
public class QuitApplication : MonoBehaviour
{
2023-03-26 19:50:30 +03:00
public void Quit()
{
#if UNITY_EDITOR
UnityEditor.EditorApplication.isPlaying = false;
#endif
2022-07-14 16:19:51 +03:00
#if UNITY_STANDALONE_WIN
2023-03-26 19:50:30 +03:00
Application.Quit();
2022-07-14 16:19:51 +03:00
#endif
2022-01-15 23:38:48 +01:00
#if UNITY_WEBGL
Application.OpenURL("https://gamejolt.com/games/darklings/640842");
#endif
2023-03-26 19:50:30 +03:00
}
2022-01-15 23:38:48 +01:00
}