BiomePainter.ColorPalette.LoadBlockTable C# (CSharp) Метод

LoadBlockTable() приватный статический Метод

private static LoadBlockTable ( ) : void
Результат void
        private static void LoadBlockTable()
        {
            blockTable = new Dictionary<String, Color>();

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