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.

14 lines
393B

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