TheKingsRace/Assets/Scripts/UI/Title/Quit.cs
Evan Nydahl 55d2bb9fe1 -added a button to credit scene to title screen
-created credit screen
2021-12-13 13:53:31 -06:00

11 lines
176 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Quit : MonoBehaviour
{
public void Exit(){
Application.Quit();
}
}