You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
18 lines
338 B
C#
18 lines
338 B
C#
using UnityEngine;
|
|
|
|
public class QuitApplication : MonoBehaviour
|
|
{
|
|
public void Quit()
|
|
{
|
|
#if UNITY_EDITOR
|
|
UnityEditor.EditorApplication.isPlaying = false;
|
|
#endif
|
|
#if UNITY_STANDALONE_WIN
|
|
Application.Quit();
|
|
#endif
|
|
#if UNITY_WEBGL
|
|
Application.OpenURL("https://gamejolt.com/games/darklings/640842");
|
|
#endif
|
|
}
|
|
}
|