feature: Close game

This commit is contained in:
Gerard Gascón 2024-01-28 00:55:09 +01:00
parent 77ae46c7cd
commit 56e51065cd
3 changed files with 163 additions and 1 deletions

View file

@ -0,0 +1,5 @@
using UnityEngine;
public class GameClose : MonoBehaviour {
public void Close() => Application.Quit();
}