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.
 
 
 

15 lines
222 B

  1. using System;
  2. using UnityEngine;
  3. namespace SUISS.Scheduling
  4. {
  5. public interface IYieldStatement
  6. {
  7. object UnityYieldable();
  8. object UnityYieldable(MonoBehaviour runner);
  9. object SUISSYieldable();
  10. }
  11. }