Nanook.QueenBee.Parser.PakFormat.loadNonDebugQbKey C# (CSharp) Method

loadNonDebugQbKey() private method

private loadNonDebugQbKey ( ) : void
return void
        private void loadNonDebugQbKey()
        {
            if (File.Exists(FullNonDebugQbKeyFilename))
            {
                string[] f;
                foreach (string s in File.ReadAllLines(FullNonDebugQbKeyFilename))
                {
                    f = s.Split('|');
                    AddNonDebugQbKey(QbKey.Create(uint.Parse(f[0].Substring(2), System.Globalization.NumberStyles.HexNumber), f[1]), f[2], null);
                }
            }
        }