using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Text; using System; using System.Linq; using System.IO; using System.Diagnostics; using Godot; using Rokojori.Extensions; namespace Rokojori.Extensions; public static class HashSetExtensions { public static void ForEach( this HashSet set, Action callback ) { foreach ( var item in set ) { callback( item ); } } }