Mirror of Svelto.ECS because we're a fan of it
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
552B

  1. #if SLOW_SVELTO_SUBMISSION
  2. namespace Svelto.ECS
  3. {
  4. /// <summary>
  5. /// use INeedEGID on an IEntityComponent only if you need the EGID. consider using EGIDComponent instead
  6. /// INeedEGID and EGIDComponent will become probably obsolete once QueryEntities will be able to return
  7. /// also the EGIDs to iterate upon
  8. /// This is set to become obsolete at a given point
  9. /// </summary>
  10. public interface INeedEGID
  11. {
  12. //The set is used only by the framework, but it must stay there
  13. EGID ID { get; set; }
  14. }
  15. }
  16. #endif