BiomePainter.ColorPalette.LoadBlockTable C# (CSharp) Method

LoadBlockTable() private static method

private static LoadBlockTable ( ) : void
return void
        private static void LoadBlockTable()
        {
            blockTable = new Dictionary<String, Color>();

            if(File.Exists(pathDefault))
                Parse(pathDefault);
            if(File.Exists(pathUser))
                Parse(pathUser);
        }