//Calls the passed void function with no arguments after delay public static IEnumerator CallWithDelay(QTimerCallfuncInt del, int num, float delay) { yield return(new WaitForSeconds(delay)); del(num); }
//Calls the passed void function with no arguments after delay public static IEnumerator CallWithDelay(QTimerCallfuncInt del, int num, float delay) { yield return new WaitForSeconds(delay); del(num); }