From 63459776f25e8b7b11d71f3cbe103394f125b870 Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Fri, 28 Mar 2025 12:12:32 +0800 Subject: [PATCH] add newer browsable for readonly pool wrappers --- src/Pools/EcsPool.cs | 1 + src/Pools/EcsTagPool.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Pools/EcsPool.cs b/src/Pools/EcsPool.cs index 3345981..62a258c 100644 --- a/src/Pools/EcsPool.cs +++ b/src/Pools/EcsPool.cs @@ -386,6 +386,7 @@ namespace DCFApixels.DragonECS #if ENABLE_IL2CPP [Il2CppSetOption(Option.NullChecks, false)] #endif + [EditorBrowsable(EditorBrowsableState.Never)] public readonly struct ReadonlyEcsPool : IEcsReadonlyPool //IEnumerable - IntelliSense hack where T : struct, IEcsComponent { diff --git a/src/Pools/EcsTagPool.cs b/src/Pools/EcsTagPool.cs index bade114..b8bce1d 100644 --- a/src/Pools/EcsTagPool.cs +++ b/src/Pools/EcsTagPool.cs @@ -333,6 +333,7 @@ namespace DCFApixels.DragonECS #if ENABLE_IL2CPP [Il2CppSetOption(Option.NullChecks, false)] #endif + [EditorBrowsable(EditorBrowsableState.Never)] public readonly struct ReadonlyEcsTagPool : IEcsReadonlyPool //IEnumerable - IntelliSense hack where T : struct, IEcsTagComponent {