Exemple #1
0
        public void LoadCompiled()
        {
            string path = Owner.GetResourcePath(CTResourceType.TLK, Name, true);

            m_contents = TLKReader.GetFileContents(path);
        }
Exemple #2
0
        public static TlkContents[] GetFileContents(string filePath)
        {
            TLKReader reader = new TLKReader(filePath);

            return(reader.m_contents);
        }