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.

16 lines
439B

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