namespace LitMotion.Collections { /// /// An object pool node consisting of a linked list /// /// public interface ILinkedPoolNode where T : class { ref T NextNode { get; } } }