void Start()
 {
     m1.Log();
     m2.Log();
     m22.Log();
     m23.Log();
     noMono.Log();
 }
示例#2
0
        public NoMonoBehaviour(M1Behaviour m1, IM2Behaviour m2)
        {
            this.m1 = m1;

            Debug.Log("NoMonoBehaviour was created!");
            m1.Log();
            m2.Log();
            Debug.Log("--------");
        }