10 lines
214 B
C#
10 lines
214 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Exit : MonoBehaviour{
|
|
public void doExitGame(){
|
|
Application.Quit();
|
|
Debug.Log("Sortint");
|
|
}
|
|
}
|