Unofficial CardLife revival project, pronounced like "celery"
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.

9 lines
171B

  1. using Svelto.ECS;
  2. namespace CLre.API.Engines
  3. {
  4. public interface ICLreEngine : IQueryingEntitiesEngine
  5. {
  6. IEntityFactory entityFactory { get; set; }
  7. }
  8. }