This commit is contained in:
Michał Gdula 2022-05-15 00:03:31 +01:00
parent 90cf5a6112
commit 24501eac1e
13 changed files with 83 additions and 208 deletions

10
gameExit.cs Normal file
View file

@ -0,0 +1,10 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class gameExit : MonoBehaviour
{
public void doExitGame() {
Application.Quit();
}
}