mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-05-07 14:32:03 -05:00
11 lines
176 B
C#
11 lines
176 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Quit : MonoBehaviour
|
|
{
|
|
public void Exit(){
|
|
Application.Quit();
|
|
}
|
|
}
|