16 lines
422 B
C#
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");
|
|
}
|
|
}
|