Пример #1
0
        private GONodeMan(int reserverNum = 3, int growth = 1)
            : base()
        {
            this.BaseIntialize(reserverNum, growth);

            this.poNodeCompare = new GONode();
            this.poNullGO      = new NullGO();

            this.poNodeCompare.poGameObject = this.poNullGO;
        }
Пример #2
0
 public virtual void VisitNullGameObject(NullGO n)
 {
     Debug.WriteLine("Visit by NullGO not implemented");
     Debug.Assert(false);
 }