using System; using SHADE; public class QuitButton : Script { protected override void start() { UIElement ui = GetComponent(); ui.OnClick.RegisterAction(() => { Audio.StopAllSounds(); Application.Quit(); }); } protected override void update() { } }