Esempio n. 1
0
        public static DBC GetDBC(string name)
        {
            string path = "DBFilesClient\\" + name + ".dbc";

            if (_locale == null || !_locale.FileExists(path))
            {
                throw new FileNotFoundException("Unable to find DBC " + name);
            }

            return(new DBC(new CFileStream(_locale, path)));
        }