Mirror of Svelto.ECS because we're a fan of it
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
543B

  1. using System;
  2. using System.Collections.Generic;
  3. using Svelto.ECS.Internal;
  4. namespace Svelto.ECS
  5. {
  6. public interface IComponentBuilder
  7. {
  8. void BuildEntityAndAddToList(ITypeSafeDictionary dictionary, EGID egid, IEnumerable<object> implementors);
  9. void Preallocate(ITypeSafeDictionary dictionary, uint size);
  10. ITypeSafeDictionary CreateDictionary(uint size);
  11. Type GetEntityComponentType();
  12. bool isUnmanaged { get; }
  13. ComponentID getComponentID { get; }
  14. }
  15. }