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.

16 lines
295B

  1. using System.Collections.Generic;
  2. using Svelto.Tasks;
  3. namespace Svelto.ServiceLayer
  4. {
  5. public interface IServiceRequest
  6. {
  7. IEnumerator<TaskContract> Execute();
  8. }
  9. public interface IServiceRequest<in TDependency>: IServiceRequest
  10. {
  11. IServiceRequest Inject(TDependency registerData);
  12. }
  13. }