using System; using System.Collections.Generic; using System.Linq; using System.Text; using Sandbox.ModAPI; namespace Sandbox.ModAPI.Ingame { public interface IMyBlockGroup { void GetBlocks(List blocks, Func collect = null); void GetBlocksOfType(List blocks, Func collect = null) where T : class; void GetBlocksOfType(List blocks, Func collect = null) where T : class; string Name { get;} } }