すみません、あとIEnumeratorなどを戻り値としたコルーチンをinterface内で定義とかも出来ないでしょうか?

interface ITest {
IEnumerator Coltest()
{
yield return null;
}
}