com.alicizax.kyrylokuzyk.pr.../Tests/TestComponent.cs
陈思海 de686b7cf8 init
2025-01-23 10:16:47 +08:00

11 lines
245 B
C#

#if TEST_FRAMEWORK_INSTALLED
using System.Collections;
using UnityEngine;
public class TestComponent : MonoBehaviour {
IEnumerator Start() {
var test = new Tests();
yield return test.SequenceNestingInfinite();
}
}
#endif