using UnityEngine; namespace LobbyRelaySample.UI { public class ExitButtonUI : MonoBehaviour { public void OnExitButton() { Application.Quit(); } } }