コード例 #1
0
ファイル: ResDirectory.cs プロジェクト: MelloRin/BeatMaker
        public bool getChildDir(out ResDirectory resDir, string childName)
        {
            if (childDirs.ContainsKey(childName))
            {
                resDir = childDirs[childName];
                return(true);
            }

            resDir = null;
            return(false);
        }
コード例 #2
0
ファイル: ResDirectory.cs プロジェクト: MelloRin/BeatMaker
 public void addChildDir(ResDirectory dir)
 {
     childDirs.Add(dir.dirName, dir);
 }