mirror of
https://github.com/Fluffy-Bean/Again.git
synced 2025-05-14 13:12:16 +00:00
10 lines
181 B
C#
10 lines
181 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class gameExit : MonoBehaviour
|
|
{
|
|
public void doExitGame() {
|
|
Application.Quit();
|
|
}
|
|
}
|