示例#1
0
文件: BT.cs 项目: zh423328/BTree
        public override bool Processs(Entity.EntityParent theOwner)
        {
            foreach (IBTreeNode node in mChildren)
            {
                if (node != null)
                {
                    node.Processs(theOwner);
                }
            }

            return(mbReturn);
        }
示例#2
0
文件: BT.cs 项目: zh423328/BTree
        public override bool Processs(Entity.EntityParent theOwner)
        {
            //return base.Processs(theOwner);
            foreach (IBTreeNode node in mChildren)
            {
                if (node != null)
                {
                    if (node.Processs(theOwner))
                    {
                        return(true);
                    }
                }
            }

            return(false);
        }
示例#3
0
 public override bool Processs(Entity.EntityParent theOwner)
 {
     return(base.Processs(theOwner));
 }