namespace XGame.Framework.Components { public interface IComponentGroup { void Add(IComponent component); void Remove(IComponent component); } }