feat: initial import

This commit is contained in:
redglow
2026-07-11 10:54:02 +02:00
commit e560a743fb
55 changed files with 993 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using Godot;
namespace GodotHostTest.Helpers;
public static class NodeExtensions
{
public static void AddTo(this IDisposable disposable, Node node)
{
node.TreeExited += OnTreeExited;
return;
void OnTreeExited()
{
disposable.Dispose();
node.TreeExited -= OnTreeExited;
}
}
}