A stable modding interface between Techblox and mods https://mod.exmods.org/
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.

17 lines
473B

  1. using System.Collections;
  2. using RobocraftX.Schedulers;
  3. using Svelto.Tasks;
  4. using Svelto.Tasks.ExtraLean;
  5. using Svelto.Tasks.Unity.Internal;
  6. namespace TechbloxModdingAPI.Tasks
  7. {
  8. public class OnGuiRunner : SteppableRunner<ExtraLeanSveltoTask<IEnumerator>>
  9. {
  10. public OnGuiRunner(string name, uint runningOrder = 0)
  11. : base(name)
  12. {
  13. UnityCoroutineRunner.StartOnGuiCoroutine(this._processEnumerator, runningOrder);
  14. }
  15. }
  16. }