Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
378B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Svelto.ECS
  4. {
  5. interface IEntitySerializationFactory
  6. {
  7. EntityInitializer BuildEntity(EGID egid, IComponentBuilder[] componentsToBuild, Type descriptorType,
  8. IEnumerable<object> implementors = null,
  9. [System.Runtime.CompilerServices.CallerMemberName] string caller = null);
  10. }
  11. }