massive/client/chat/ChatWindow.cs
Benjamin Palko cd4842a7c4 cleanup
2025-05-22 15:48:46 -04:00

16 lines
422 B
C#

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<ChatOptions>("Options");
_log = GetNode<ChatLog>("ChatLog");
_input = GetNode<ChatInput>("ChatInput");
}
}