using Godot; public partial class ChatWindow : VBoxContainer { private ChatOptions _options; private ChatLog _log; private LineEdit _input; // Called when the node enters the scene tree for the first time. public override void _EnterTree() { _options = GetNode("Options"); _log = GetNode("ChatLog"); _input = GetNode("ChatInput"); } }