Inheritance: ICSnziNode
コード例 #1
0
ファイル: CSnzi.cs プロジェクト: raj581/Marvin
        public CSnzi()
        {
            leafs = new CSnziLeafNode[LeafCount];
            root  = new CSnziRootNode();

            for (int i = 0; i < leafs.Length; i++)
            {
                leafs[i] = new CSnziLeafNode(root);
            }
        }
コード例 #2
0
ファイル: CSnzi.cs プロジェクト: TheRealDuckboy/mono-soc-2008
		public CSnzi ()
		{
			leafs = new CSnziLeafNode[LeafCount];
			root = new CSnziRootNode ();
			
			for (int i = 0; i < leafs.Length; i++) {
				leafs[i] = new CSnziLeafNode (root);
			}
		}