using Godot; using System; public class GameOver : Node2D { private void _on_Button_pressed() { GetTree().Quit(); } }