This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
monsterstalker/Assets/Scripts/GameController.cs
T

12 lines
217 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameController : MonoBehaviour {
void Update() {
if (Input.GetButtonDown ("Quit")) {
Application.Quit ();
}
}
}