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 420B

12345678910111213141516
  1. using System.Collections;
  2. namespace Svelto.ECS.Schedulers
  3. {
  4. public abstract class EntitiesSubmissionScheduler
  5. {
  6. protected internal abstract EnginesRoot.EntitiesSubmitter onTick { set; }
  7. public abstract void Dispose();
  8. public abstract bool paused { get; set; }
  9. public uint iteration { get; protected internal set; }
  10. internal bool isRunning;
  11. }
  12. }