namespace AcDream.App.Rendering.Wb; /// /// Mockable interface over so adapters that /// drive ref-count lifecycle (e.g. LandblockSpawnAdapter, EntitySpawnAdapter) /// can be unit-tested without a real WB pipeline behind them. /// public interface IWbMeshAdapter { void IncrementRefCount(ulong id); void DecrementRefCount(ulong id); }