mirror of
https://github.com/ConjureETS/Labo_2_Equ_1_a15.git
synced 2026-03-24 10:01:00 +00:00
11 lines
151 B
C#
11 lines
151 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class QuitGameOnClick : MonoBehaviour
|
|
{
|
|
public void ExitGame()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|