Mirror of Svelto.ECS because we're a fan of it
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
366B

  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 bool paused { get; set; }
  8. public uint iteration { get; protected internal set; }
  9. internal bool isRunning;
  10. }
  11. }