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

11 行
349B

  1. using Svelto.ECS.Reference;
  2. namespace Svelto.ECS
  3. {
  4. //To do: this should be removed and the only reason it exists is to solve some edge case scenarios with
  5. //the publish/consumer pattern
  6. public struct EntityReferenceComponent:IEntityComponent, INeedEntityReference
  7. {
  8. public EntityReference selfReference { get; set; }
  9. }
  10. }