Initial Commit

This commit is contained in:
Mario Steele 2025-09-26 20:54:51 -05:00
commit 3e881fe33f
11 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,23 @@
using Godot;
using System;
[GlobalClass]
public partial class LabelLineEdit : HBoxContainer
{
#region Exports
#endregion
#region Nodes
private Label _labelNode;
private LineEdit _lineEdit;
#endregion
public LabelLineEdit()
{
_labelNode = new Label();
_lineEdit = new LineEdit();
_lineEdit.SizeFlagsHorizontal = SizeFlags.ExpandFill;
AddChild(_labelNode);
AddChild(_lineEdit);
}
}