예제 #1
0
        public bool getChildDir(out ResDirectory resDir, string childName)
        {
            if (childDirs.ContainsKey(childName))
            {
                resDir = childDirs[childName];
                return(true);
            }

            resDir = null;
            return(false);
        }
예제 #2
0
 public void addChildDir(ResDirectory dir)
 {
     childDirs.Add(dir.dirName, dir);
 }