mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 10:21:06 +00:00
11 lines
162 B
C#
11 lines
162 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Exit : MonoBehaviour {
|
|
|
|
public void QuitProject()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|