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.

EntitySubmissionScheduler.cs 642B

123456789101112131415161718192021
  1. using System;
  2. namespace Svelto.ECS.Schedulers
  3. {
  4. public interface IEntitiesSubmissionScheduler: IDisposable
  5. {
  6. bool paused { get; set; }
  7. }
  8. public abstract class EntitiesSubmissionScheduler: IEntitiesSubmissionScheduler
  9. {
  10. protected internal abstract EnginesRoot.EntitiesSubmitter onTick { set; }
  11. public abstract void Dispose();
  12. public abstract bool paused { get; set; }
  13. }
  14. public abstract class ISimpleEntitiesSubmissionScheduler: EntitiesSubmissionScheduler
  15. {
  16. public abstract void SubmitEntities();
  17. }
  18. }