Esempio n. 1
0
 protected override void onAwake()
 {
     m_ghost  = GetComponent <GhostLogic>();
     m_pacman = FindObjectOfType <PacmanLogic>();
     m_time   = 0;
 }
Esempio n. 2
0
        public void TestConstructorLoadGameOK()
        {
            PacmanLogic pacmanLogic = new PacmanLogic(this.pacmanModelMock.Object, this.lvl, true);

            Assert.IsInstanceOf(typeof(PacmanLogic), pacmanLogic);
        }