using Godot; namespace TheLegendOfGustav.GUI; public partial class PlayerName : Control { private LineEdit nameEdit; private Button startButton; [Signal] public delegate void NewGameRequestEventHandler(string name); public override void _Ready() { nameEdit = GetNode("VBoxContainer/thename"); startButton = GetNode