using System; namespace GameCore.TinyECS { public interface IEntityDataStruct : IDisposable { void Add(); void Remove(int index); } }