namespace Svelto.ECS
{
///Entity Components MUST implement IEntityComponent
public interface IEntityComponent
{
}
///
/// use INeedEGID on an IEntityComponent only if you need the EGID. consider using EGIDComponent instead
///
public interface INeedEGID
{
//The set is used only for the framework, but it must stay there
EGID ID { get; set; }
}
}