Skip to content

Instantly share code, notes, and snippets.

@davepape
Last active September 19, 2022 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davepape/02de42e7cfb48c5e22c8286f994f9ff7 to your computer and use it in GitHub Desktop.
Save davepape/02de42e7cfb48c5e22c8286f994f9ff7 to your computer and use it in GitHub Desktop.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class QuitButton : MonoBehaviour
{
void Start()
{
}
void Update()
{
if (Input.GetButtonDown("Quit"))
{
Application.Quit();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment