Ejemplo n.º 1
0
    private void Start()
    {
        Co.Delay(() => Debug.Log("after 1 second"), 1f);
        Co.Delay(() => Debug.Log("after 2 seconds"), 2f);

        var plainClass = new PlainClass();

        plainClass.TestCoroutine();
    }
Ejemplo n.º 2
0
 public ConstructionInjectionUsageTestClass(PlainClass plain, SingletonClass singleton)
 {
     HasProperConstructorBeenUsed = true;
     this.plainClassProperty = plain;
     this.singletonProperty = singleton;
 }