Refactored code

This commit is contained in:
Rendo 2025-07-17 18:11:00 +05:00
commit c18c7f4db7
13 changed files with 136 additions and 58 deletions

View file

@ -0,0 +1,13 @@
using Godot;
[Tool]
public partial class EditorsContainer : PanelContainer
{
public void ClearChildren()
{
foreach (var child in GetChildren())
{
child.QueueFree();
}
}
}